dragondaud/myClock

24h Display wrong change at midnight

Opened this issue · 2 comments

an other thing I noticed yesterday that at after midnight after 23:59 it continued with 24:00
thats simply wrong or at least its not conform with standard definition auf 24h.
it should continue with 00:00 or 0:00. I never had a clock or watch which showed 24:59 and then jumped to 01:00 ;)

i don't know something wrong with the code somewhere, sell why should that be related to ESP32 ?
and how the hell do you get it to run on an ESP8266 ??

again crude but effective workaround:
if (hh > 23) hh = 0;