diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-07-28 14:18:48 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-07-28 14:18:48 +0200 |
commit | 47288ef2d494922f6b48a147afc80165b7444fa4 (patch) | |
tree | 78b5c71180627e06a37ae1de0deef81c996c3732 | |
parent | ede898fe5f786d261e1b1791ac102e9cf3fa7366 (diff) | |
download | temp-logger-47288ef2d494922f6b48a147afc80165b7444fa4.tar.gz temp-logger-47288ef2d494922f6b48a147afc80165b7444fa4.tar.xz |
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 <bluewind@xinu.at>
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |