arduino-timer
arduino-timer copied to clipboard
Non-blocking library for delaying function calls
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...
Signed-off-by: Greg
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...
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...
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...
The automatic time changeover from winter time to summer time takes place approx. 2 weeks too early
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...