Skip to content

Commit a258083

Browse files
committed
Update call in task function detailed explanation #3
1 parent bea5220 commit a258083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Agenda
22
======
33

4-
There are a lot of scheduler implementations for Arduino on github, I have developed Agenda because I needed an overflow proof implementation I could trust for HAB (High Altitude Balloon) launches and home automation experiments. Agenda is immune to `micros()` overflow and it is designed to work rock solid.
4+
There are a lot of scheduler implementations for Arduino on github, I have developed Agenda because I needed an overflow proof implementation non interrupt-driven I could trust for HAB (High Altitude Balloon) launches and home automation experiments. Agenda is immune to `micros()` overflow and it is designed to work rock solid. The big PROs are the high resilience, compatibility with any sort of library and configurable memory consumption. Consider that Agenda, not using interrupts, can likely overshoot requested delays and scheduled executions with long duration tasks. Try calling ```update()``` inside task function to reduce the magnitude of the problem.
55

66
First you have to instantiate the Agenda object:
77
```cpp

0 commit comments

Comments
 (0)