From d073154be91a25589478ba678c2e425cca72507b Mon Sep 17 00:00:00 2001 From: Andrey Khrolenok Date: Fri, 2 Oct 2020 16:13:21 +0300 Subject: [PATCH] Fix icons --- custom_components/gismeteo/const.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/gismeteo/const.py b/custom_components/gismeteo/const.py index 8bcf973..e7ffc26 100644 --- a/custom_components/gismeteo/const.py +++ b/custom_components/gismeteo/const.py @@ -89,10 +89,10 @@ SENSOR_TYPES = { "weather": ["Condition", None, None], - "temperature": ["Temperature", TEMP_CELSIUS, "mdi:temperature"], + "temperature": ["Temperature", TEMP_CELSIUS, "mdi:thermometer"], "wind_speed": ["Wind speed", SPEED_METERS_PER_SECOND, "mdi:weather-windy"], "wind_bearing": ["Wind bearing", DEGREE, "mdi:weather-windy"], - "humidity": ["Humidity", PERCENTAGE, "mdi:humidity"], + "humidity": ["Humidity", PERCENTAGE, "mdi:water-percent"], "pressure": ["Pressure", PRESSURE_HPA, "mdi:gauge"], "clouds": ["Cloud coverage", PERCENTAGE, "mdi:weather-partlycloudy"], "rain": ["Rain", LENGTH_MILLIMETERS, "mdi:weather-rainy"],