2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 06:08:44 +00:00

59_Weather: added unit readings

git-svn-id: https://svn.fhem.de/fhem/trunk@11148 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
borisneubert 2016-03-29 16:08:04 +00:00
parent eafa50f786
commit 65cf5ad5ea

View File

@ -228,7 +228,6 @@ sub Weather_RetrieveDataFinished($$$) {
my @YahooCodes_i18n= YahooWeatherAPI_getYahooCodes($lang);
my $item= $data->{item};
#my $units= YahooWeatherAPI_units($data); # units hash reference
readingsBeginUpdate($hash);
@ -240,6 +239,14 @@ sub Weather_RetrieveDataFinished($$$) {
readingsBulkUpdate($hash, "pubDateTs", $pubDateTs);
readingsBulkUpdate($hash, "validity", "up-to-date");
# units
my $units= YahooWeatherAPI_units($data); # units hash reference
readingsBulkUpdate($hash, "unit_distance", $units->{distance});
readingsBulkUpdate($hash, "unit_speed", $units->{speed});
readingsBulkUpdate($hash, "unit_pressuree", $units->{pressure});
readingsBulkUpdate($hash, "unit_temperature", $units->{temperature});
# description
readingsBulkUpdate($hash, "description", $data->{description});