Skip to content

Releases: bluemurder/EveryTimer

EveryTimer v1.1.1

25 Jun 14:10
fad1efe
Compare
Choose a tag to compare

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

23 Apr 14:43
Compare
Choose a tag to compare

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

11 Apr 10:34
Compare
Choose a tag to compare

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.