diff options
| author | Brad Luyster <bradluyster@gmail.com> | 2012-07-24 15:16:22 -0700 |
|---|---|---|
| committer | Brad Luyster <bradluyster@gmail.com> | 2012-07-24 15:16:22 -0700 |
| commit | 4c36911c2e428bba8a3e6cac07638a95cef93310 (patch) | |
| tree | 1c6088e10cf57d1b62f24f816b9249a4bbf3ef1e | |
| parent | 902b0315449bf6837cbe1d8d9c336d0ad24f9080 (diff) | |
| parent | 2f2b4a09ccd5efc2af2fe1d192f27dec48a83d24 (diff) | |
Merge pull request #1 from wiesson/master
Fixed the Example
| -rw-r--r-- | Arduino/Examples/example.ino | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Arduino/Examples/example.ino b/Arduino/Examples/example.ino index f5e3b80..b595200 100644 --- a/Arduino/Examples/example.ino +++ b/Arduino/Examples/example.ino @@ -9,7 +9,7 @@ void setup() { myQueue.scheduleFunction(testFunction, "Test", 5000, 1000); while(1) { - myQueue.run(millis()); + myQueue.Run(millis()); delay(10); } } @@ -20,3 +20,5 @@ int testFunction(unsigned long now) Serial.println(now); } +void loop() { +}
\ No newline at end of file |
