From 3844df8ad73181dbb9ed925541bbb44e966cef91 Mon Sep 17 00:00:00 2001 From: Robin Carrupt <43844979+Robibobo1@users.noreply.github.com> Date: Tue, 12 Nov 2024 10:36:21 +0100 Subject: [PATCH] Error in the code comment --- examples/pcf8523/pcf8523.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pcf8523/pcf8523.ino b/examples/pcf8523/pcf8523.ino index 6790ae98..e60366f2 100644 --- a/examples/pcf8523/pcf8523.ino +++ b/examples/pcf8523/pcf8523.ino @@ -93,7 +93,7 @@ void loop () { Serial.print(now.unixtime() / 86400L); Serial.println("d"); - // calculate a date which is 7 days, 12 hours and 30 seconds into the future + // calculate a date which is 7 days, 12 hours, 30 minutes and 6 seconds into the future DateTime future (now + TimeSpan(7,12,30,6)); Serial.print(" now + 7d + 12h + 30m + 6s: ");