kang sunghyungledel
Published © GPL3+

Innovation Lab #1 Blinking an LED

A Bongilcheon high school Innovation Lab project. These LEDs are small, powerful lights that are used in many different applications.

BeginnerShowcase (no instructions)1 hour2,257
Innovation Lab #1 Blinking an LED

Things used in this project

Hardware components

Breadboard (generic)
Breadboard (generic)
×1
Jumper wires (generic)
Jumper wires (generic)
×1
LED (generic)
LED (generic)
×1
Resistor 100 ohm
Resistor 100 ohm
×1
Arduino 101
Arduino 101
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Blinking an LED

Schematics and circuit diagram for Blinking an LED

Code

Blinking an LED

Arduino
Code for Blinking an LED
void setup()
{
//set pin 13 to OUTPUT
pinMode(13, OUTPUT);
}
//The loop function runs from the top down and repeats itself until you upload new
//code or power down your Arduino
void loop()
{
//Turn pin 13 HIGH (ON).
digitalWrite(13, HIGH);
//wait 1000 milliseconds (1 second)
delay(1000);
//Turn pin 13, LOW (OFF)
digitalWrite(13, LOW);
//wait 1000 milliseconds
delay(1000);
}

Credits

kang sunghyun
0 projects • 1 follower
hello :0 Bongilcheon high school 20626 kang sunghyun
Contact
gledel
100 projects • 116 followers
Looking back on my childhood, I was happy when I was making something and I was proud of myself. "Making is instinct!"
Contact

Comments

Please log in or sign up to comment.