8. LED Blink

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 First I make sure the wiring to andruino is correct and i put the code to run the simulation 
 

 

 

 

Code

/*Paste your code here*/
// ledblink
int ledPin = 13;

void setup() {
pinMode(ledPin, OUTPUT); 
}

void loop() {
digitalWrite(ledPin, HIGH); 
delay(400);                 
digitalWrite(ledPin, LOW);   
delay(800);                
}

 

 

 

Output

Video

Add video of the output (know more)

 

 

Photo of Output

Add a photo of your hardware showing the output.

 

 

Was this helpful?
Upvote
Downvote