From d89f55d755aff7277440a2d6096264df69d1af40 Mon Sep 17 00:00:00 2001 From: Daniel Eichhorn Date: Sun, 11 Jun 2017 18:03:32 +0200 Subject: [PATCH] Fixed type in symbol conversion --- esp8266-weather-station-color.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp8266-weather-station-color.ino b/esp8266-weather-station-color.ino index 071d9a0..7fb0664 100644 --- a/esp8266-weather-station-color.ino +++ b/esp8266-weather-station-color.ino @@ -322,7 +322,7 @@ String getMeteoconIcon(String iconText) { if (iconText == "Q") return "chancerain"; if (iconText == "W") return "chancesleet"; if (iconText == "V") return "chancesnow"; - if (iconText == "S") return "chancetstorms"; + if (iconText == "S") return "chancestorms"; if (iconText == "B") return "clear"; if (iconText == "Y") return "cloudy"; if (iconText == "F") return "flurries";