SparkCorePolledTimer (community library)
Summary
Name | Value |
---|---|
Name | SparkCorePolledTimer |
Version | 1.0.0 |
Installs | |
License | Open |
Author | David Fowler david.fowler@gmail.com |
URL | https://github.com/dfowler7437/sparkcorepolledtimer |
Repository | https://github.com/dfowler7437/sparkcorepolledtimer.git |
Download | .tar.gz |
Simple Timer Library for the Spark Core which enables time based events.
Example Build Testing
Device OS Version:
This table is generated from an automated build. Success only indicates that the code compiled successfully.
Library Read Me
This content is provided by the library maintainer and has not been validated or approved.
SparkCorePolledTimer
Simple Timer Library for the Spark Core. Lets you do time based events. This library is open I only ask that you let me know of any improvements and that you drop me an emial about your project. I may link back to it from my blog... David Fowler AKA uCHobby - david.fowler@gmail.com - http://www.uchobby.com
Eample Usage
PolledTimer updateTimer(1000); //Create a timer object and set it's timeout in milliseconds void OnTimer(void); //Prototype for timer callback method
setup(){ //Standard setup function... updateTimer.SetCallback(OnTimer); //Tell the time about the handler function. }
loop(){ //Standard loop function... updateTimer.Update(); //Must call this often in your loop. It will call the //handler method automatically when it's time too }
void OnTimer(void) { //Handler for the timer, will be called automatically //do your time based stuff here... }
Browse Library Files