How do you plan to solve it? I use 250 ohm for the resistor and i can simply use the loop function to achieve your requirements
#define GPIO your_gpio void setup(){ pinMode(GPIO,OUTPUT); digitalWrite(GPIO,0); } void loop(){ digitalWrite(GPIO,1); delay(400); digitalWrite(GPIO,0); delay(800); }
Add video of the output (know more)
Add a photo of your hardware showing the output.
Submit Your Solution