diff --git a/fhem/FHEM/98_openweathermap.pm b/fhem/FHEM/98_openweathermap.pm index fc9c696db..571708720 100644 --- a/fhem/FHEM/98_openweathermap.pm +++ b/fhem/FHEM/98_openweathermap.pm @@ -33,6 +33,10 @@ # ############################################################################## # Changelog: +# 2013-07-28 initial release +# 2013-07-29 fixed some typos +# added "set send" +# package main; @@ -94,6 +98,11 @@ OWO_Set($@){ given($cmd){ when("?") { return $usage; } + when("send"){ + OWO_GetStatus($hash,1); + return; + } + when("stationByName"){ $urlString = $urlString."?q="; my $count; @@ -293,7 +302,7 @@ OWO_Define($$){ readingsEndUpdate($hash, 1); InternalTimer(gettimeofday()+$hash->{helper}{INTERVAL}, "OWO_GetStatus", $hash, 0); - Log 3, "openweather: $name created"; + Log 3, "openweather $name created"; return; } @@ -464,6 +473,7 @@ OWO_isday($$){
  • you can use all task alone, in any combination or all together

  • +
  • 1. providing your own weather data to owo network


  • +
  • 2. set a weather station from owo network as data source for your fhem installation


  • +
  • 3. get weather data from a selected weather station once (e.g. to do own presentations)