Thanks Frittna, yes my timezone is UTC +8, and I think I have found a reference on how to set that <see below> ; my timezone dont have DST, so it should just a simple one liner (i think), still not tested though..cuz ya, i'm a newbie, so about that compiling, could you point me exactly where to look? :)
My M5stack is the FIRE version ; with the LED bars , and this is my first project using it (actually got inspired to get it after seeing your project, as I was wanting a proper tabletop ticker for some time now), will there be any version that can utilize those LEDs as indicators, that would be awesome!
""
For a time zone that does not change to daylight/summer time, pass the same rule
twice to the constructor, e.g.:
Timezone usAZ(usMST, usMST);
In fact the WorldClock example does this for Arizona:
//US Mountain Time Zone (Denver, Salt Lake City)
TimeChangeRule usMDT = {"MDT", Second, dowSunday, Mar, 2, -360};
TimeChangeRule usMST = {"MST", First, dowSunday, Nov, 2, -420};
Timezone usMT(usMDT, usMST);
//Arizona is US Mountain Time Zone but does not use DST
Timezone usAZ(usMST, usMST);
""
So mine should be >>>
//for Malaysia its MYT (UTC+8)Time Zone but does not have DST
Timezone MYT(MYT, MYT);
?