An LED flash question!

How do I flash an LED on for 100ms and off for 3000ms without using delay?

Thanks in advance.

Look at the blink without delay example.

marco_c:
Look at the blink without delay example.

But you'll need to think about how to have two different intervals for on = 100ms and off = 3000ms. As that example stands, the led is off and on for the same interval...

Could someone point me in the right direction. I have uploaded the blink without delay, but cannot see how to get the 'short on' and 'long off'

You'll need to keep two delays, timers and a state record

E.g.

delayBlinkOn
delayBlinkOff
timerBlinkOn
timerBlinkOff
stateBlinkOn
stateBlinkOff

  1. Turn your LED on and set stateBlinkOn to True and timerBlinkOn to the current millis().
  2. While stateBlinkOn is true then you want to check timerBlinkOn each loop until it's equal or greater than millis() + delayBlinkOn.
  3. Once the condition is met, turn your LED off and set stateBlinkOff to True and timerBlinkOff to current millis().
  4. While stateBlinkOff is true then check the timerBlinkOff each loop until it's equal or greater than millis() + delayBlinkOff.
  5. Once the condition is met, you're back to turn your LED on at Step 1 above and the sequence repeats.

Now, go code that up. :wink:

All you need to do in the blink without delay is change the value of "interval" when you change the LED state.