Bug: Missing Moonphase Icon /moon23.bmp

The Icon for the last Moonphase is missing.
Serial Console shows /moon23.bmp is missing.
Just changed one Line to get the last icon fetched.
This commit is contained in:
LoveBootCaptain
2016-11-28 15:28:23 +01:00
committed by GitHub
parent 503fd463f7
commit 6ff1fca032

View File

@@ -185,7 +185,7 @@ void downloadResources() {
tft.fillRect(0, 120, 240, 40, ILI9341_BLACK);
webResource.downloadFile("http://www.squix.org/blog/wunderground/mini/" + wundergroundIcons[i] + ".bmp", "/mini/" + wundergroundIcons[i] + ".bmp", _downloadCallback);
}
for (int i = 0; i < 23; i++) {
for (int i = 0; i < 24; i++) {
tft.fillRect(0, 120, 240, 40, ILI9341_BLACK);
webResource.downloadFile("http://www.squix.org/blog/moonphase_L" + String(i) + ".bmp", "/moon" + String(i) + ".bmp", _downloadCallback);
}