diff --git a/library.json b/library.json index a7e7ad1..2ec61a2 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "muTimer", - "version": "0.0.1", + "version": "0.1.0", "description": "Arduino library to easily use on/off delays and cycle timers with non-blocking functions. The library provides a simple on/off delay for digital signals or a cycle timer which creates a periodically output. It keeps track of the elapsed time since the start of the delay or cycle and is non-blocking. The current time gets stored on a change of the input for the delayOnOff() functions to compare it with the given delayOn or delayOff delay times. The cycle functions restart themself without any external input and these create a permanent on/off signal (e.g. blinking LED) or just on trigger cycle (eg. start periodically actions).", "keywords": "timer-on, timer-off, ton, tof, timer, delay, cycle,", "repository": diff --git a/library.properties b/library.properties index 813070c..339ef06 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=muTimer -version=0.0.1 +version=0.1.0 author=Michael Uray maintainer=Michael Uray sentence=Arduino library to easily use on/off delays and cycle timers with non-blocking functions.