Anatoli Arkhipenko

Results 45 comments of Anatoli Arkhipenko
trafficstars

https://github.com/arkhipenko/TaskScheduler/blob/master/examples/Scheduler_example01/Scheduler_example01.ino#L64 This is what I don't see in your sketch.

I am afraid I will not be able to help you unless you send me full code. You send it to a r k h i p e n k...

OK. TaskScheduler runs in one thread. If you need to synchronize tasks from different threads and wait for async execution, it is better to use StatusRequest objects - as they...

The fastest scheduling is instant, and incrementally 1ms. But I am sure the problem is elsewhere. Could you please send me your code at ***@***.***? I'll have a look. Sent...

First, you should not do this in the loop: ``` while (central.connected()) { runner.execute(); } ``` this is blocking, and the framework does other things outside of the loop() which...

I have actually never been able to find a tm1650 manual, so the entire library was built by trial an error. Do you mind sharing it with me? [email protected] Since...

Thank you for your contribution. I will use the code from the PR, but there are a few changes that are not in line with the rest of the library....

Please open an issue with Painless mesh author.

Hi @georgevbsantiago - based on the description of `elapsed()` I am not sure it works they way you describe, I think it is the time since last Ticket tick, no?...

I think it is relatively easy for me to capture the exact moment ( `millis()` ) when the task's callback was invoked (entered) and finished (returned to scheduler). Same for...