All submissions

Solving Approach

How do you plan to solve it?

 using wokwi trough simulation
 

 

 

 

Code

 


int PIN =7;
void setup()
{
	pinMode(PIN, OUTPUT);
  }

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

 

 

 

Output

 

Video

Add video of the output (know more)

https://wokwi.com/projects/442621401512532993

 

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!