From 94f817709f25e60ab4327c6e6b889b06db96b062 Mon Sep 17 00:00:00 2001 From: betateilchen <> Date: Mon, 29 Jul 2013 19:15:27 +0000 Subject: [PATCH] update git-svn-id: https://svn.fhem.de/fhem/trunk@3537 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/98_openweathermap.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fhem/FHEM/98_openweathermap.pm b/fhem/FHEM/98_openweathermap.pm index 85576c17a..d2a6bb8a4 100644 --- a/fhem/FHEM/98_openweathermap.pm +++ b/fhem/FHEM/98_openweathermap.pm @@ -85,7 +85,7 @@ sub OWO_Set($@){ my ($hash, @a) = @_; my $name = $hash->{NAME}; - my $usage = "Unknown argument, choose one of stationById stationByGeo stationByName"; + my $usage = "Unknown argument, choose one of stationById stationByGeo stationByName send"; my $response; return "No Argument given" if(!defined($a[1])); @@ -359,7 +359,7 @@ UpdateReadings($$$){ readingsBulkUpdate($hash, $prefix."pressureAbs", $jsonWeather->{main}{pressure}); readingsBulkUpdate($hash, $prefix."pressureRel", $jsonWeather->{main}{sea_level}); readingsBulkUpdate($hash, $prefix."windSpeed", $jsonWeather->{wind}{speed}); - readingsBulkUpdate($hash, $prefix."windDir", int($jsonWeather->{wind}{deg})); + readingsBulkUpdate($hash, $prefix."windDir", $jsonWeather->{wind}{deg}); readingsBulkUpdate($hash, $prefix."clouds", $jsonWeather->{clouds}{all}); readingsBulkUpdate($hash, $prefix."rain3h", $jsonWeather->{rain}{"3h"}); readingsBulkUpdate($hash, $prefix."snow3h", $jsonWeather->{snow}{"3h"});