
This is the blinking LED light. To do this project it requires an arduino kit (obviously)and also putting a light pin on 13, under GDN, with the small tip first the. First connect the Arduino board to the computer using the USB cord and then you open up Arduino on the computer and type the code:
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(500);
digitalWrite(13, LOW);
delay(300);
}
This code determines how fast you want the LED light to blink and the delay on it.






