avr-task-scheduler

AVR mcu bare metal task scheduler
Index Commits Files Refs README LICENSE
commit 2a275ecc2cbc63566a03791df608e1aa3d89d8e1
parent 834225bdde4e5d28524b0431555a6b85782e6837
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Tue, 14 Oct 2025 09:38:51 -0300

Update `README.md`

Diffstat:
MREADME.md | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -1,8 +1,11 @@
 # Arduino Bare Metal Task Scheduler
 
 This is a simple program which implements a task scheduler. What this does is
-basically execute a series of task attached to the scheduler after the specified
-interval in ms, in the example two leds are blinked at different rates.
+basically execute the series of task attached to the scheduler after the
+specified task period in ms have passed.
+
+In the example four leds controlled, two blinking at different rates and two
+controlled by buttons.
 
 ## Dependencies