Software Timers  1.4
Software timer library
 All Classes Files Functions Variables Pages
SoftTimer.cpp File Reference

SoftTimer - Arduino library for simple timers. More...

#include <WProgram.h>
#include "SoftTimer.h"
Include dependency graph for SoftTimer.cpp:

Detailed Description

SoftTimer - Arduino library for simple timers.

Description
Provide a simple, quick to use timer object. No hardware timer or interrupt is used. Less code to type, and shorter programs because of not having to pepper comparisons with millis() everywhere.

Developed with Arduino IDE 1.6.10. May not run on Arduino 0.X.

TODO
Author
Volker Kuhlmann
http://volker.top.geek.nz/contact.html
Download
http://volker.top.geek.nz/arduino/
Copyright
Copyright (C) 2016 by Volker Kuhlmann
http://volker.top.geek.nz/contact.html
All rights reserved. Released under the terms of the GNU General Public License (GPL) Version 3 or (at your option) any later version.
See https://www.gnu.org/licenses/ for details.
History
  • v1.0, 24 Aug 2016 Volker Kuhlmann
    • Initial version. Based on code in a project from 19 Aug 2016.
  • v1.1, 25 Aug 2016 Volker Kuhlmann
    • Add missing intervalS(). Change unsigned short to explicit uint8_t.
    • Add example.
  • v1.2, 05 Sep 2016 Volker Kuhlmann
    • Rename from SimpleTimer to SoftTimer.
    • Rename startS/intervalS to startN/intervalN, for Narrow / Wide.
    • Add SoftTimerExt.
  • v1.3, 09 Sep 2016 Volker Kuhlmann
    • Add interval().
  • v1.4, 13 Sep 2016 Volker Kuhlmann
    • Doxygen comments.