aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortigoe <tom.igoe@gmail.com>2013-05-30 23:13:34 -0400
committertigoe <tom.igoe@gmail.com>2013-05-30 23:13:34 -0400
commitdd70de3d16430aa3cf065c6eb197abc7e89da114 (patch)
tree0f733f2e582b087ef87664c325c2a1edec3eb304
parenta027a1546d253d1503396e127ec45f0d71dee1c8 (diff)
Updated TimeCheck example
-rw-r--r--libraries/Bridge/examples/TimeCheck/TimeCheck.ino17
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();
-
- */
}
}
-
-
-
-
-
-
-