thewnitha
Published © Apache-2.0

How to blink LED

Hello, today I'm going to show you how to blink a led. First please subscribe my you tube channel.

BeginnerFull instructions provided373
How to blink LED

Things used in this project

Story

Read more

Schematics

led_blink_TLGz1sRpkW.jpg

Code

LED_blink.ino

Arduino
void setup() {
  pinMode(13, OUTPUT); 
}

void loop() {
  digitalWrite(13, HIGH); 
  delay(1000);           
  digitalWrite(13, LOW); 
  delay(1000);          
}

Credits

thewnitha
0 projects • 1 follower

Comments