About 131,000 results
Open links in new tab
  1. Alternatives to delay () - General Guidance - Arduino Forum

    Aug 10, 2023 · hi, just built my first project with Arduino. Was hoping to optimize it in a few ways (reduce global variables, lesser string variables etc.) when i stumbled upon a few posts saying …

  2. Using millis () for timing. A beginners guide - Arduino Forum

    Oct 2, 2017 · How can I do this? Millis and conditions Code for arduino Making a self heating/watering system for my plant :) Relay gets stuck and RF issue NON-BLOCKING …

  3. How do you create an on-delay timer? - Arduino Forum

    Jun 13, 2020 · Hi everyone, I tried searching for this and couldn't find a solution that I could understand anyway. I need to program a Nano to be a simple on-delay timer. As a PLC …

  4. Delay () a good way to wait several minutes? - Arduino Forum

    Jul 9, 2008 · I'm making a device that has to do something every 8+minutes, and it has to be pretty precise. At first I thought that delay would be the easiest way to do this, but I wasn't …

  5. maximum delay in arduino an how to make it

    May 20, 2013 · I want to make a 1 minute delay on my program? how do I make it? how the maximum delay on the Arduino? please help me

  6. [SOLVED] How to correctly use millis () for delay - Arduino Forum

    Apr 29, 2023 · Using while () like that you might as well just use delay (), you've just re-created delay () in a different way. This: Flashing multiple LEDs at the same time Shows you several …

  7. Delay - Is it necessary? - Programming - Arduino Forum

    Feb 11, 2019 · I heard rumors that not using delay() as a kind of cool-down function would damage the Arduino, but I can't verify it. Is it true? Or just a conspiracy? Thanks!

  8. Is there a way to get delay () to not affect other ... - Arduino Forum

    Sep 4, 2019 · The functions delay () and delayMicroseconds () block the Arduino until they complete. Have a look at how millis () is used to manage timing without blocking in Several …

  9. How accurate is delay (); - General Guidance - Arduino Forum

    May 27, 2017 · Let's say I want delay of a week it's 6.048e+8 milliseconds,how much would my delay be wrong,hope you understand my question

  10. Using the if statement with a time delay - Arduino Forum

    Jun 21, 2013 · Hi, my objective is to use the if statement so that the first statement, if it's true, activates the second statement and the LED only turns on if the second statement is true. The …