Edzelf / ESP32-Radio

Internet radio based on ESP32, VS1053 and a TFT screen.
GNU General Public License v3.0
964 stars 227 forks source link

Fix for weekdays in LCD2004.h #487

Closed h1aji closed 2 years ago

h1aji commented 2 years ago

I noticed that Sunday is always shown as ??? Little bit googling said that timeinfo.tm_wday 0 is for sunday, So this line https://github.com/Edzelf/ESP32-Radio/blob/bc25a066e79704afec52f056960ca8b89bbf54f4/src/LCD2004.h#L471

Should be modified to const char* WDAYS [] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" } ;

Edzelf commented 2 years ago

Fixed