mirror of
https://github.com/adafruit/RTClib.git
synced 2026-07-27 19:56:05 +00:00
fix same comment and debug string.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user