Skip to content

Releases: jantabacki/ArduinoTimerLibrary

Arduino Timer Library using interrupts

13 Feb 20:38
907f43c

Choose a tag to compare

This version requires more FLASH memory than version 1.0.0, however it introduces more thread management capabilities. Its operation is based on TIMER1 calling appropriate methods at a given time. This library allows you to declare the number of threads to handle. It is possible to start threads and stop them while the program is running. It is also possible to delete threads and add others while the program is running. Library usage is very intuitive, which can be seen in the attached examples.

Arduino Timer Library with no interrupts

13 Feb 20:26

Choose a tag to compare

This version is very light, additionally it doesn't use timer based interrupts. Thanks to this, it does not interfere with other libraries that require them. The library facilitates work, allowing easy management of performed tasks. It is independent of the hardware platform. If the selected board does not have the right timer or the right number of them, this library will be perfect.