LED Blinking
This Arduino project is a revised version of the project "Arduino - Blinking LED" :)
Supplies
- LED light (1)
- Arduino Leonardo board (1)
- Breadboard (1)
- Wires (2)
- Resistor (1)
Step 1 Connect
You can know how to connect by looking the picture.
Step 2 Code
int led = 9;
void setup()
{ pinMode(led, OUTPUT); }
void loop()
{ digitalWrite(led, HIGH);
delay(500);
digitalWrite(led, LOW);
delay(500); }
Step 3 Decoration
Draw what ever you like on the box you made or you can take boxes and decorate