TickerScheduler
TickerScheduler copied to clipboard
Simple scheduler for ESP8266 Arduino based on Ticker
Fixes #21
Hello all, could anyone be willing to provide me with a sample of how they used the TickerScheduler. I would really appreciate it. Thank you in advance.
The example shows that ts.add has 4 arguments, 3 mandatory and 1 optional, however, the CPP seems to want 5 arguments: here's the offending line of code ts.add(1, (1000 *...
Hey, I'm trying to use this nifty library but getting an error. I can't find any real examples but reading the docs this should be the way to do it...
On AVR it would not set is_attached to false, potentially enabling it on disable call.
Let's say i have 1 task. I can't name that task as 15 as I won't be able to add it, it worked only if I used as id "0"....
Please fix code in TickerScheduler.h : 4 line. `#include ` Change to: ``` #if defined(ARDUINO) && ARDUINO >= 100 #include "Arduino.h" #endif ``` Thanks.
Hello, I was wondering how one can achieve priority with your library. Assume you have 2 tasks, one at 250ms and one at 2 seconds. How can you force the...
In other words, must the callback function `f` be of the form `f(void)` or can it have arguments? Many thanks for your help, neat library!