How do you plan to solve it?
This is quiet a smile Arduino program. A script has to be written to turn on a particular GPIO pin for 400ms and off for 800ms
#define LEDPIN 7 void setup() { pinMode(LEDPIN, OUTPUT); } void loop() { digitalWrite(LEDPIN, HIGH); delay(400); digitalWrite(LEDPIN, LOW); delay(800); }
video of the output (know more)
Add a photo of your hardware showing the output.
Submit Your Solution