sinlge led — Arduino Nano simulation

glow

An interactive Arduino Nano circuit simulation you can run free in your browser on Velxio, by vishwesvaran52.

Components

Sketch code

int LED=2;
void setup() {
  pinMode(LED, OUTPUT);
}

void loop() {
  digitalWrite(LED, HIGH);
  delay(2000);
  digitalWrite(LED, LOW);
  delay(2000);
}

More projects by vishwesvaran52