diff --git a/fhem/CHANGED b/fhem/CHANGED index 2ef2fef1b..f551b8e24 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - change: 59_Weather: change icons for conditions 31, 34, 36 - added: MQTT: connect fhem with mqtt - added: MQTT_BRIDGE: bidirectional mapping of existing fhem-device to mqtt-topic - added: MQTT_DEVICE: fhem-device that can be controlled by and publishes to mqtt diff --git a/fhem/FHEM/59_Weather.pm b/fhem/FHEM/59_Weather.pm index 77501dc93..13bde74ca 100755 --- a/fhem/FHEM/59_Weather.pm +++ b/fhem/FHEM/59_Weather.pm @@ -48,8 +48,7 @@ my @YahooCodes_en = ( 'mostly cloudy', # day 'partly cloudy', # night 'partly cloudy', # day - # see http://forum.fhem.de/index.php?action=post;topic=21375.30 - 'sunny', #clear (night) according to Yahoo API docs, but actually used day and night. + 'clear', 'sunny', 'fair', #night 'fair', #day @@ -118,8 +117,8 @@ my @iconlist = ( 'chance_of_rain', 'snowflurries', 'chance_of_snow', 'heavysnow', 'snow', 'sleet', 'sleet', 'dust', 'fog', 'haze', 'smoke', 'flurries', 'windy', 'icy', 'cloudy', 'mostlycloudy_night', 'mostlycloudy', 'partly_cloudy_night', - 'partly_cloudy', 'clear', 'sunny', 'mostly_clear_night', 'clear', 'heavyrain', - 'clear', 'scatteredthunderstorms', 'scatteredthunderstorms', 'scatteredthunderstorms', 'scatteredshowers', 'heavysnow', + 'partly_cloudy', 'sunny', 'sunny', 'mostly_clear_night', 'mostly_sunny', 'heavyrain', + 'sunny', 'scatteredthunderstorms', 'scatteredthunderstorms', 'scatteredthunderstorms', 'scatteredshowers', 'heavysnow', 'chance_of_snow', 'heavysnow', 'partly_cloudy', 'heavyrain', 'chance_of_snow', 'scatteredshowers'); ###################################