RahilBaig
Published © GPL3+

How to Blink an LED with Arduino? [FOR BEGINNERS]

Are you new to the world of Arduino and looking for a very simple project to begin with?

BeginnerProtip833
How to Blink an LED with Arduino? [FOR BEGINNERS]

Things used in this project

Story

Read more

Schematics

Final Circuit Diagram

Code

Code

Arduino
int led = 7; 

void setup() {

pinMode(led, OUTPUT); 

}

void loop() {

digitalWrite(led, HIGH); 

delay(1000); 

digitalWrite(led, LOW); 

delay(1000); 

}

Credits

RahilBaig

RahilBaig

0 projects • 0 followers

Comments