fix same comment and debug string.

This commit is contained in:
DodoHand
2020-11-24 14:26:00 -05:00
committed by sfohey
parent 9bb43e8345
commit b724055f9e
+2 -2
View File
@@ -60,10 +60,10 @@ void loop () {
Serial.print(now.unixtime() / 86400L);
Serial.println("d");
// calculate a date which is 7 days, 30 minutes, 6 seconds into the future
// calculate a date which is 7 days, 12 hours, 30 minutes, 6 seconds into the future
DateTime future (now + TimeSpan(7,12,30,6));
Serial.print(" now + 7d + 30m + 6s: ");
Serial.print(" now + 7d + 12h + 30m + 6s: ");
Serial.print(future.year(), DEC);
Serial.print('/');
Serial.print(future.month(), DEC);