Nicholas-Ustick / arduino-softtimer

Task oriented Arduino programming.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description

SoftTimer enable a higher level Arduino programing, jet easy to use, and lightweight. You often face with the problem that you need to do multiply tasks in the same time. In SoftTimer manner programmer creates Tasks that runs periodically.

When you use SoftTimer you do not implement the "loop" function of the Arduino. All your code will run event driven, all processes running asynchronous, no more blocking code (like delay()) is needed.

I also try to add some usefully tools to use SoftTimer out of the box (like blinker, pwm, debouncer, etc.)

You can install SoftTimer library directly from the Library Manager of the Arduino IDE. Follow this link for details: How to Install a Library

An external dependecy PciManager library is required to compile the SoftTimer library. You can also install it from the Library Manager, as mentioned above.

The detailed documentation can be found here:

About

Task oriented Arduino programming.


Languages

Language:C++ 100.0%