diff options
author | tigoe <tom.igoe@gmail.com> | 2013-05-30 23:13:34 -0400 |
---|---|---|
committer | tigoe <tom.igoe@gmail.com> | 2013-05-30 23:13:34 -0400 |
commit | dd70de3d16430aa3cf065c6eb197abc7e89da114 (patch) | |
tree | 0f733f2e582b087ef87664c325c2a1edec3eb304 /libraries/Bridge/examples/TimeCheck | |
parent | a027a1546d253d1503396e127ec45f0d71dee1c8 (diff) |
Updated TimeCheck example
Diffstat (limited to 'libraries/Bridge/examples/TimeCheck')
-rw-r--r-- | libraries/Bridge/examples/TimeCheck/TimeCheck.ino | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libraries/Bridge/examples/TimeCheck/TimeCheck.ino b/libraries/Bridge/examples/TimeCheck/TimeCheck.ino index 69a8544..54fd131 100644 --- a/libraries/Bridge/examples/TimeCheck/TimeCheck.ino +++ b/libraries/Bridge/examples/TimeCheck/TimeCheck.ino @@ -74,23 +74,6 @@ void loop() { minutes = minString.toInt(); lastSecond = seconds; // save to do a time comparison seconds = secString.toInt(); - - /* - NOTE: If the parseInt() and parseFloar() methods from Stream - were included with Process, this would be simpler: - - hours = date.parseInt(); - minutes = date.parseInt(); - seconds = date.parseInt(); - - */ } } - - - - - - - |