You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in TFT_eSPI_OpenWeather_LittleFS.ino line 359 local time is sent to strDate() when it requires UTC.
Change this:
String date = "Updated: " + strDate(local_time);
to this:
String date = "Updated: " + strDate(now());
The text was updated successfully, but these errors were encountered:
in TFT_eSPI_OpenWeather_LittleFS.ino line 359 local time is sent to strDate() when it requires UTC.
Change this:
String date = "Updated: " + strDate(local_time);
to this:
String date = "Updated: " + strDate(now());
The text was updated successfully, but these errors were encountered: