All submissions

Solving Approach

i used the arduino uno in wokwi, then i added 1 LED and 1 resistor and changed the resistors property into 220ohms, I then connected the GND in the arduino into the LED, then connected LED into the resistor, lastly I connected the resistor into the 7th digital GPIO pin.

 
 

 

 

 

Code

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

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

}

 

 

 

Output

Video

 https://wokwi.com/projects/442437205109458945 (know more)

 

 

Photo of Output

 

 

Submit Your Solution

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