All submissions

Solving Approach

 

How do you plan to solve it? 
I use 250 ohm for the resistor and i can simply use the loop function to achieve your requirements
 
 

 
 

 

 

 

Code

#define GPIO your_gpio
void setup(){
pinMode(GPIO,OUTPUT);

digitalWrite(GPIO,0);

}

void loop(){

digitalWrite(GPIO,1);

delay(400);

digitalWrite(GPIO,0);

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!