How do you plan to solve it?
#define LED_PIN 5 // GPIO pin connected to LED void setup() { pinMode(LED_PIN, OUTPUT); } void loop() { digitalWrite(LED_PIN, HIGH); // LED ON delay(400); // 400 ms ON time digitalWrite(LED_PIN, LOW); // LED OFF delay(800); // 800 ms OFF time }
Add video of the output (know more)
Add a photo of your hardware showing the output.
Submit Your Solution