From 503fd463f7b1cb2ae2205b593aee644cabe8d025 Mon Sep 17 00:00:00 2001 From: Daniel Eichhorn Date: Sun, 16 Oct 2016 21:11:02 +0200 Subject: [PATCH] Fixed Update sequence with missing font definition --- esp8266-weather-station-color.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/esp8266-weather-station-color.ino b/esp8266-weather-station-color.ino index 4a58e30..45c01b0 100644 --- a/esp8266-weather-station-color.ino +++ b/esp8266-weather-station-color.ino @@ -173,6 +173,7 @@ void downloadCallback(String filename, int16_t bytesDownloaded, int16_t bytesTot // Download the bitmaps void downloadResources() { tft.fillScreen(ILI9341_BLACK); + tft.setFont(&ArialRoundedMTBold_14); char id[5]; for (int i = 0; i < 21; i++) { sprintf(id, "%02d", i); @@ -193,6 +194,7 @@ void downloadResources() { // Update the internet based information and update screen void updateData() { tft.fillScreen(ILI9341_BLACK); + tft.setFont(&ArialRoundedMTBold_14); drawProgress(20, "Updating time..."); timeClient.updateTime(); drawProgress(50, "Updating conditions...");