How do you plan to solve it?
#define PIN = 7; void setup() { pinMode(PIN, OUTPUT); } void loop() { digitalWrite(PIN, HIGH); delay(400); digitalWrite(PIN, LOW); delay(800); }
Add video of the output (know more)
Add a photo of your hardware showing the output.
Submit Your Solution