
Introduction
The following article is about my simplest library that I wrote for the arduino: SoftTimers. The SoftTimers arduino library allows one to properly time multiple events and know when each “timer” expires meaning that an action is required.
Skip to the download section for quick download.
When I first learned programming the arduino, I learned the “hello world” of the arduino: turning a LED on and off. As expected, I used delay()
to define how long the LED should be on and off.