tylerpeppy
Published © GPL3+

Easy led blink

A circuit for beginners on how to Make an led blink on and off.

BeginnerFull instructions provided568
Easy led blink

Things used in this project

Story

Read more

Schematics

Led schematic

Code

Led code

Arduino
// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin 13 as an output.
  pinMode(13, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(13, HIGH);
  delay(1000);                      
  digitalWrite(13, LOW);   
  delay(500);                       
}

Credits

tylerpeppy

tylerpeppy

2 projects • 42 followers
Love Arduino and IoT projects!

Comments