AceTime  0.3
Date and time classes for Arduino that support timezones from the TZ Database, and a system clock that can synchronize from an NTP server or an RTC chip.
ManualZoneSpecifier.cpp
1 #include <Print.h>
2 #include "ManualZoneSpecifier.h"
3 
4 namespace ace_time {
5 
6 void ManualZoneSpecifier::printTo(Print& printer) const {
7  mStdOffset.printTo(printer);
8  printer.print(mIsDst ? F("(DST)") : F("(STD)"));
9 }
10 
11 }
void printTo(Print &printer) const
Print the human readable string.
Definition: TimeOffset.cpp:10
void printTo(Print &printer) const override
Print the zone specifier in the format of "+/-HH:MM (DST|STD)".