All submissions

Solving Approach

using esp32 in a bread board with led

 

 

Code

/*Paste your code here*/#define led 25
void setup() {
  // put your setup code here, to run once:
    pinMode(led, OUTPUT);
    }
    void loop() {
      digitalWrite(led, HIGH);
        delay(400);
          digitalWrite(led, LOW);
            delay(800);
            }
            

 

 

 

Output

Video

Add video of the output (know more)

https://drive.google.com/file/d/1BJBzZe8juYbCcaZUSnxbV_JCl9T5PmuA/view?usp=drivesdk

 

Photo of Output

 

 

Submit Your Solution

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