arduino-timer icon indicating copy to clipboard operation
arduino-timer copied to clipboard

Non-blocking library for delaying function calls

Results 10 arduino-timer issues
Sort by recently updated
recently updated
newest added

It would be useful to have a signature that specified whether a timer should start already expired so that it fires on the first timer tick via loop() rather than...

Hello, With the current definition of the func handler: ```cpp typedef bool (*handler_t)(T opaque); /* task handler func signature */ ``` It's impossible to use `std::bind` when you want the...

This header was renamed in Nov. 2011 and only Arduino IDE versions prior to v1.0 used that name. Signed-off-by: Sean Robinson

i made a timer with: auto delay_timer = timer_create_default(); and cannot terminate it using: delay_timer.cancel(); timer is started with: delay_timer.every(1000, bomb_armed); seems he need the "task", but cannot find a...

support
FAQ

Hi, i have to handle events that will occour in minutes (not milliseconds), but i noticed that using this code: // in the global auto play_time_timer = timer_create_default(); // in...

support
FAQ

It would be great if we could get a reset funtion

If I want to create several global timers but not have all of them running, how would one do that? E.g, ``` static bool heartbeatTimerCallback (void *argument __attribute__ ((unused))); static...

On my ESP32 I configure with configTime(3600, 3600, "time.google.com"); European Time for Germany(MESZ) with automatic time changeover. I have the issue, that the automatic time changeover from winter time to...

I want to create a shutdown timer for my RP2040 (Raspberry Pi Pico). I use V3.0.1 of your library together with earlephilhower's arduino core. The .every example with a blinking...