Updated TimeCheck example

This commit is contained in:
tigoe 2013-05-30 23:13:34 -04:00
parent bcacf68108
commit 04d19946f4
1 changed files with 0 additions and 17 deletions

View File

@ -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();
*/
}
}