8<------------------------ BUG REPORT -----------------------------------------
Latest version of esp8266-weather-station-color.ino available
in line 503 you have :
drawLabelValue(0, "Temperature:", currentWeather.temp + degreeSign);
i suggest you replace with :
drawLabelValue(0, "Temperature:", String(currentWeather.temp,1) + (degreeSign));
Apologies if i do not follow all the rules of githup, first time for me i use it ;-).
Regards.
Jacques
8<------------------------ END BUG REPORT -------------------------------------