All submissions

Solving Approach

make a simple blinking led using arduino in wokwi

 

Code

/*Paste your code here*/

void setup() {
  // put your setup code here, to run once:
pinMode(8, OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
digitalWrite(8, HIGH);
delay(400);
digitalWrite(8, LOW);
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!