Releases: bluemurder/EveryTimer
EveryTimer v1.1.1
EveryTimer library for Arduino. This is a simple way to call user defined callbacks at specified time intervals.
Present library includes an example on how to blink a LED every second without blocking the main loop routine (using EveryTimer class), and an example on how to wait for a timeout to call a specified function (OneShotTimer class).
Changelog:
- Updated library information.
EveryTimer v1.1.0
EveryTimer library for Arduino. This is a simple way to call user defined callbacks at specified time intervals.
Present library includes an example on how to blink a LED every second without blocking the main loop routine (using EveryTimer class), and an example on how to wait for a timeout to call a specified function (OneShotTimer class).
Changelog:
- Added a new class OneShotTimer allowing to call one single time a function after a specified delay.
EveryTimer v1.0.0
First release of EveryTimer. This is a simple way to call user defined callbacks at specified time intervals.
Present library includes an example on how to blink a LED every second without blocking the main loop routine.