All submissions

Solving Approach

How do you plan to solve it?

 
 

 

 

 

Code

// LED Blink - Arduino UNO
const int LED_PIN = 13; // change to 8 if you wire there

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

void loop() {
  digitalWrite(LED_PIN, HIGH); // LED on
  delay(400);                 // 1000 ms = 1 second
  digitalWrite(LED_PIN, LOW);  // LED off
  delay(800);
}


 

 

 

Output

Video

Add video of the output (know more)

 

 

Photo of Output

Add a photo of your hardware showing the output.

 

 

Submit Your Solution

Note: Once submitted, your solution goes public, helping others learn from your approach!