From 47288ef2d494922f6b48a147afc80165b7444fa4 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 28 Jul 2013 14:18:48 +0200 Subject: Print UTC suffix when outputting time over serial We keep time in UTC and this might help to remember that when checking if the time is correct. Signed-off-by: Florian Pritz --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 8058f46..319c024 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -205,7 +205,7 @@ static void print_time() Serial.print(now.minute(), DEC); Serial.print(':'); Serial.print(now.second(), DEC); - Serial.println(); + Serial.println(" UTC"); } const byte ERR_CMD = 9; -- cgit v1.2.3-24-g4f1b