weather modul (google) will nicht ...

Begonnen von Guest, 07 Mai 2012, 10:07:05

Vorheriges Thema - Nächstes Thema

Guest

Originally posted by: <email address deleted>

Hi!
Der Post wäre doch einen Eintrag ins WIKI wert!

Am Donnerstag, 10. Mai 2012 21:14:35 UTC+2 schrieb berwegera:
>
> Der Vollständigkeit halber hier meine Implementierung mit Wetteranzeige,
> Filelog und Grafik:
>
>
>
>
>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

Hi,
definitiv :)
Bin grad in Mailverkehr mit Rudi, Boris und Tobias, an welcher Stelle die
Routine WeatherAsHtmlLocal hinterlegt werden soll (als Teil von Weather.pm,
Teil von pgm2, contrib...).
Auch entwickelt Tobias gerade noch etwas hinzu.
Sobald es da einen neuen Stand gibt, folgen weitere Infos.
 
Gruß, Uli
 

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

locodriver

                                                         

@Bewegera

Hallo, ich habe mal den von Dir geposteten Code bei mir eingebaut und der
Plot wird schön gezeichnet. Danke.
Ich habe noch ein paar Fragen dazu:
Wo werden die Werte des Plots gespeichert, bei mir wird das Verzeichnis "/var/fhemarchive"
nicht angelegt und die Datei "/var/tmp/TotalWetter-%Y.log Wetter_Sirnach"
(bei mir Borsdorf) bleibt leer.

Dann würde ich im Raum "AlleGrafiken" noch einen zweiten Plot mit den
Maximal- und Minimalwerten aus Googleweather anlegen. Wie muss ich das
anstellen? Auszulesen sind ja dann sicher die Variablen: fc${1}_low_c und
fc${1}_high_c aus dem 99_Utils.pm?

Am Donnerstag, 10. Mai 2012 21:14:35 UTC+2 schrieb berwegera:
>
> Der Vollständigkeit halber hier meine Implementierung mit Wetteranzeige,
> Filelog und Grafik:
>
> Das ganze kommt nicht von mir, sondern ist eine Zusammenfassung aus
> verschiedensten Threads.
>
> *fhem.cfg erweitert um folgende Einträge*
> define Wetter_Sirnach Weather Sirnach 900 de
> attr Wetter_Sirnach event-on-change-reading forecast_date,fc0_condition
> attr Wetter_Sirnach event-on-update-reading wind,humidity,temperature
>
> define w_Wetter_Sirnach weblink htmlCode {
> WeatherAsHtmlLocal("Wetter_Sirnach", $hour, "/FHEM/weathericons") }
> attr w_Wetter_Sirnach htmlattr width_"220" height="330" frameborder="0"
> marginheight="0" marginwidth="0"
> attr w_Wetter_Sirnach room Wetter-Sirnach
>
> define TotalWetter FileLog /var/tmp/TotalWetter-%Y.log Wetter_Sirnach
> attr TotalWetter archivedir /var/fhemarchive
> attr TotalWetter logtype temp4hum4:wind|humidity|temperature,text:Werte
> attr TotalWetter nrarchive 1
> attr TotalWetter room AlleTemp
>
> define weblink_Sirnach weblink fileplot TotalWetter:temp4hum4:CURRENT
> attr weblink_Sirnach label "Google Wetter in Sirnach Min $data{min1} C,
> Max $data{max1} C, Last $data{currval1} C"
> attr weblink_Sirnach room AlleGrafiken
>
> *99_Utils.pm erweitert um folgende Routinen:*
>
> ###################################################################################
> # Adapted WeatherOutput from FHEMWEB
> # call as {WeatherAsHtmlLocal("", $hour,
> "")}
> # e.g.    {WeatherAsHtmlLocal("MunichWeather", $hour,
> "/FHEM/weathericons")}
> # If desired, store weathericons in new subdir FHEM/weathericons and hand
> over source = "FHEM/weathericons"
> # Automatically defines a device with: define weblink_
> weblink htmlCode { WeatherAsHtmlLocal("MyWeatherName", $hour, "SourcePath")
> }
> # define w_MucWeather weblink htmlCode {
> WeatherAsHtmlLocal("MunichWeather", $hour) }
> # attr w_MucWeather room Wetter
> sub
> WeatherAsHtmlLocal($$$)
> {
>   my ($d, $hour, $source) = @_;
>   $d = "" if(!$d);
>   return "$d is not a Weather instance
"
>         if(!$defs{$d} || $defs{$d}{TYPE} ne "Weather");
>
>   ## make sure FHEMWEB is loaded. If not, load it
>   if(!$modules{FHEMWEB}{LOADED}) {
> Log 3, "WeatherAsHtmlLocal: Need 01_FHEMWEB.pm";
> if ( -f "$attr{global}{modpath}/FHEM/01_FHEMWEB.pm") {
> Log 3, "WeatherAsHtmlLocal: Loading 01_FHEMWEB.pm";
> my $ret = CommandReload(undef, "01_FHEMWEB");
> Log 0, $ret if($ret);
> }
>   }
>  
>   ## check parameters
>   my $imgHome = "";
>   return "No source indicated. Aborted" if (!$source);
>   if ($source =~m /google/i ) {
> $imgHome = "http://www.google.com" ;
> } else {
> if ($source !~ m,\/FHEM\/,) {
> Log 1, 'Weather-Html: Source needs to contain /FHEM/ (in capitals) in
> path! Aborted.';
> return 'Weather-Html: Source needs to contain /FHEM/ (in capitals) in
> path! Aborted.';
> }
> $imgHome = $source;
>   }
>
>   ### check if weblink htmlCode exists. If not, create it.
>   my $existance = 0;
>    foreach my $check (sort keys %defs) {                                  
>                        # loop all devices
> next if ($check ne "weblink_$d");
> $existance = 1
> }
> if (!$existance) {
> fhem "define weblink_$d weblink htmlCode
> {WeatherAsHtmlLocal(\"$d\",".'$hour'.", \"$source\")}";
> fhem "attr weblink_$d room Weather";
> Log 2, "WeatherHtml created the following device: weblink_$d weblink
> htmlCode {WeatherAsHtmlLocal(\"$d\",".'$hour'.", \"$source\")}";
> }
>  
>   ##### Go ###
>   my $ret = "Wetter fuer die Region ";
>   $ret .= ReadingsVal($d, "city", "");
>   $ret .= "";
>   my $icon = ReadingsVal($d, "icon", "na.png");
>   $icon =~ s,/ig/images/weather(.*)\.gif,$1\.png, if ($imgHome =~
> m/fhem/i);
>   ### check if _night-icon should be used. If sunrise is installed, use
> isday(), otherweise night from 7pm til 6am
>   my $isnight;
>   if(exists &isday) {
> $isnight = !isday();
> } else {
> $isnight = ($hour > 18 || $hour < 7);
>   }
>   ###check if night-icon exists. If so, use it.
>   if ($isnight) {
> my $nighticon = $icon;
> $nighticon =~ s,.png,_night.png,;
> my $checknighticon = AttrVal("global", "modpath", "") . $imgHome .
> $nighticon;
> # Log 1, "checknighticon: $checknighticon   --- ".((-f $checknighticon )
> ? "existiert" : "existiert nicht");
> $icon = $nighticon if(-f $checknighticon);
>   }
>   ###Print current day
> #  Log 1, "Icon0: $imgHome  $icon";
> #   $ret .= sprintf(''."\n",
>    $ret .= sprintf(''."\n",
>         $imgHome, $icon,
>         ReadingsVal($d, "condition", ""),
>         ReadingsVal($d, "temp_c", ""), ReadingsVal($d, "humidity", ""),
>         ReadingsVal($d, "wind_condition", ""));
>   ###Print 4 day forecast
>   for(my $i=1; $i<=4; $i++) {
>     my $icon = ReadingsVal($d, "fc${i}_icon", "na.png");
> if ($imgHome =~ m/fhem/i) {
> $icon =~ s,/ig/images/weather(.*)\.gif,$1\.png,  ;
> }
> # Log 1, "Icon$i: $imgHome  $icon";
>     $ret .= sprintf(''."\n",
>         $imgHome, $icon,
>         ReadingsVal($d, "fc${i}_day_of_week", ""),
>         ReadingsVal($d, "fc${i}_condition", ""),
>         ReadingsVal($d, "fc${i}_low_c", ""), ReadingsVal($d,
> "fc${i}_high_c", ""));
>   }
>
>   $ret .= "
> src="%s%s">%s
temp %s, hum
> %s,
%s
> src="%s%s">> href="'."$FW_ME?detail=weblink_$d".'">%s
Temperatur: %s,
> Feuchtigkeit: %s,
%s
> src="%s%s">%s: %s
Temperatur min
> %s max %s
";
>   return $ret;
>  
>   #http://www.wetteronline.de/cgi-bin/regframe?3&PRG=citytrend&LANG=de&WMO=06679&PROVIDER=anwendung&BKM=Sirnach"
> title="Trend fuer die Region Sirnach">Trend
>
>
> }
>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com
fhem 6.0 auf Rpi3 Bookworm
HM-LAN-CFG (FW 0.965), HM-MOD-UART, 2x HM-TC-IT-WM-W-EU, 4x HM-Sec-RHS und 3x HM-CC-RT-DN, 6x HM-LC-Bl1-FM mit je 1x Somfy-Motor,
2x HM-LC-SW2-FM für Licht und Lüfter, 2x HM-PB-6-WM55, Alexa, Jeelinkcross, CUL, CUNO2, IR-Blaster

Mitch

                                                     

<https://lh6.googleusercontent.com/-WCutdhg1rCc/UDPwkgRoefI/AAAAAAAACO0/82HuRNSqgS4/s1600/wetter.jpg>
Ich kämpe auch noch mit dem Wetter.

Wenn ich die Icons anzeigen lassen, verschiebt es mir immer alle Grafiken.
Die Plots fangen dann ganz oben links über dem fhem Logo an.

Aufruf ist wie folgt:
*define Wetter_Eichenau weblink htmlCode { WeatherAsHtmlLocal("Eichenau") }
attr Wetter_Eichenau fp_Erdgeschoss 150,635,1,
#attr Wetter_Eichenau htmlattr width_"220" height="330" frameborder="0"
marginheight="0" marginwidth="0"
attr Wetter_Eichenau room Wetter*

Das ganze sieht dann so aus:


Am Sonntag, 3. Juni 2012 12:40:48 UTC+2 schrieb Uwe:
>
> @Bewegera
>
> Hallo, ich habe mal den von Dir geposteten Code bei mir eingebaut und der
> Plot wird schön gezeichnet. Danke.
> Ich habe noch ein paar Fragen dazu:
> Wo werden die Werte des Plots gespeichert, bei mir wird das Verzeichnis "/var/fhemarchive"
> nicht angelegt und die Datei "/var/tmp/TotalWetter-%Y.log Wetter_Sirnach"
> (bei mir Borsdorf) bleibt leer.
>
> Dann würde ich im Raum "AlleGrafiken" noch einen zweiten Plot mit den
> Maximal- und Minimalwerten aus Googleweather anlegen. Wie muss ich das
> anstellen? Auszulesen sind ja dann sicher die Variablen: fc${1}_low_c und
> fc${1}_high_c aus dem 99_Utils.pm?
>
> Am Donnerstag, 10. Mai 2012 21:14:35 UTC+2 schrieb berwegera:
>>
>> Der Vollständigkeit halber hier meine Implementierung mit Wetteranzeige,
>> Filelog und Grafik:
>>
>> Das ganze kommt nicht von mir, sondern ist eine Zusammenfassung aus
>> verschiedensten Threads.
>>
>> *fhem.cfg erweitert um folgende Einträge*
>> define Wetter_Sirnach Weather Sirnach 900 de
>> attr Wetter_Sirnach event-on-change-reading forecast_date,fc0_condition
>> attr Wetter_Sirnach event-on-update-reading wind,humidity,temperature
>>
>> define w_Wetter_Sirnach weblink htmlCode {
>> WeatherAsHtmlLocal("Wetter_Sirnach", $hour, "/FHEM/weathericons") }
>> attr w_Wetter_Sirnach htmlattr width_"220" height="330" frameborder="0"
>> marginheight="0" marginwidth="0"
>> attr w_Wetter_Sirnach room Wetter-Sirnach
>>
>> define TotalWetter FileLog /var/tmp/TotalWetter-%Y.log Wetter_Sirnach
>> attr TotalWetter archivedir /var/fhemarchive
>> attr TotalWetter logtype temp4hum4:wind|humidity|temperature,text:Werte
>> attr TotalWetter nrarchive 1
>> attr TotalWetter room AlleTemp
>>
>> define weblink_Sirnach weblink fileplot TotalWetter:temp4hum4:CURRENT
>> attr weblink_Sirnach label "Google Wetter in Sirnach Min $data{min1} C,
>> Max $data{max1} C, Last $data{currval1} C"
>> attr weblink_Sirnach room AlleGrafiken
>>
>> *99_Utils.pm erweitert um folgende Routinen:*
>>
>> ###################################################################################
>> # Adapted WeatherOutput from FHEMWEB
>> # call as {WeatherAsHtmlLocal("", $hour,
>> "")}
>> # e.g.    {WeatherAsHtmlLocal("MunichWeather", $hour,
>> "/FHEM/weathericons")}
>> # If desired, store weathericons in new subdir FHEM/weathericons and hand
>> over source = "FHEM/weathericons"
>> # Automatically defines a device with: define weblink_
>> weblink htmlCode { WeatherAsHtmlLocal("MyWeatherName", $hour, "SourcePath")
>> }
>> # define w_MucWeather weblink htmlCode {
>> WeatherAsHtmlLocal("MunichWeather", $hour) }
>> # attr w_MucWeather room Wetter
>> sub
>> WeatherAsHtmlLocal($$$)
>> {
>>   my ($d, $hour, $source) = @_;
>>   $d = "" if(!$d);
>>   return "$d is not a Weather instance
"
>>         if(!$defs{$d} || $defs{$d}{TYPE} ne "Weather");
>>
>>   ## make sure FHEMWEB is loaded. If not, load it
>>   if(!$modules{FHEMWEB}{LOADED}) {
>> Log 3, "WeatherAsHtmlLocal: Need 01_FHEMWEB.pm";
>> if ( -f "$attr{global}{modpath}/FHEM/01_FHEMWEB.pm") {
>> Log 3, "WeatherAsHtmlLocal: Loading 01_FHEMWEB.pm";
>> my $ret = CommandReload(undef, "01_FHEMWEB");
>> Log 0, $ret if($ret);
>> }
>>   }
>>  
>>   ## check parameters
>>   my $imgHome = "";
>>   return "No source indicated. Aborted" if (!$source);
>>   if ($source =~m /google/i ) {
>> $imgHome = "http://www.google.com" ;
>> } else {
>> if ($source !~ m,\/FHEM\/,) {
>> Log 1, 'Weather-Html: Source needs to contain /FHEM/ (in capitals) in
>> path! Aborted.';
>> return 'Weather-Html: Source needs to contain /FHEM/ (in capitals) in
>> path! Aborted.';
>> }
>> $imgHome = $source;
>>   }
>>
>>   ### check if weblink htmlCode exists. If not, create it.
>>   my $existance = 0;
>>    foreach my $check (sort keys %defs) {                                
>>                          # loop all devices
>> next if ($check ne "weblink_$d");
>> $existance = 1
>> }
>> if (!$existance) {
>> fhem "define weblink_$d weblink htmlCode
>> {WeatherAsHtmlLocal(\"$d\",".'$hour'.", \"$source\")}";
>> fhem "attr weblink_$d room Weather";
>> Log 2, "WeatherHtml created the following device: weblink_$d weblink
>> htmlCode {WeatherAsHtmlLocal(\"$d\",".'$hour'.", \"$source\")}";
>> }
>>  
>>   ##### Go ###
>>   my $ret = "Wetter fuer die Region ";
>>   $ret .= ReadingsVal($d, "city", "");
>>   $ret .= "";
>>   my $icon = ReadingsVal($d, "icon", "na.png");
>>   $icon =~ s,/ig/images/weather(.*)\.gif,$1\.png, if ($imgHome =~
>> m/fhem/i);
>>   ### check if _night-icon should be used. If sunrise is installed, use
>> isday(), otherweise night from 7pm til 6am
>>   my $isnight;
>>   if(exists &isday) {
>> $isnight = !isday();
>> } else {
>> $isnight = ($hour > 18 || $hour < 7);
>>   }
>>   ###check if night-icon exists. If so, use it.
>>   if ($isnight) {
>> my $nighticon = $icon;
>> $nighticon =~ s,.png,_night.png,;
>> my $checknighticon = AttrVal("global", "modpath", "") . $imgHome .
>> $nighticon;
>> # Log 1, "checknighticon: $checknighticon   --- ".((-f $checknighticon )
>> ? "existiert" : "existiert nicht");
>> $icon = $nighticon if(-f $checknighticon);
>>   }
>>   ###Print current day
>> #  Log 1, "Icon0: $imgHome  $icon";
>> #   $ret .= sprintf(''."\n",
>>    $ret .= sprintf(''."\n",
>>         $imgHome, $icon,
>>         ReadingsVal($d, "condition", ""),
>>         ReadingsVal($d, "temp_c", ""), ReadingsVal($d, "humidity", ""),
>>         ReadingsVal($d, "wind_condition", ""));
>>   ###Print 4 day forecast
>>   for(my $i=1; $i<=4; $i++) {
>>     my $icon = ReadingsVal($d, "fc${i}_icon", "na.png");
>> if ($imgHome =~ m/fhem/i) {
>> $icon =~ s,/ig/images/weather(.*)\.gif,$1\.png,  ;
>> }
>> # Log 1, "Icon$i: $imgHome  $icon";
>>     $ret .= sprintf(''."\n",
>>         $imgHome, $icon,
>>         ReadingsVal($d, "fc${i}_day_of_week", ""),
>>         ReadingsVal($d, "fc${i}_condition", ""),
>>         ReadingsVal($d, "fc${i}_low_c", ""), ReadingsVal($d,
>> "fc${i}_high_c", ""));
>>   }
>>
>>   $ret .= "
>> src="%s%s">%s
temp %s, hum
>> %s,
%s
>> src="%s%s">>> href="'."$FW_ME?detail=weblink_$d".'">%s
Temperatur: %s,
>> Feuchtigkeit: %s,
%s
>> src="%s%s">%s: %s
Temperatur min
>> %s max %s
";
>>   return $ret;
>>  
>>   #http://www.wetteronline.de/cgi-bin/regframe?3&PRG=citytrend&LANG=de&WMO=06679&PROVIDER=anwendung&BKM=Sirnach"
>> title="Trend fuer die Region Sirnach">Trend
>>
>>
>> }
>>
>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com
FHEM im Proxmox Container

UliM

                                                 

hast du evtl feste koordinaten im css angegeben?

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com
RPi4/Raspbian, CUL V3 (ca. 30 HomeMatic-devices), LAN (HarmonyHub, alexa etc.).  Fördermitglied des FHEM e.V.

Mitch

                                                     

Nein, habe im css nichts geänert.

Wüsste gar nicht wo ;-)

Am Mittwoch, 22. August 2012 09:10:55 UTC+2 schrieb UliM:
>
> hast du evtl feste koordinaten im css angegeben?

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com
FHEM im Proxmox Container

Guest

Originally posted by: <email address deleted>

Hallo,

ich weiss nicht was passiert ist, aber mein google-Wetter will auf einmal
nicht mehr. Die letzten Daten habe ich gestern gegen 8:30 Uhr erhalten.

Auszug aus meinem Wetter-Logfile:

2012-08-27_08:38:20 Wetter humidity: 90
2012-08-27_08:38:20 Wetter wind: 18

danach keine Einträge mehr...

Seit dem erhalte ich keine Daten mehr. Auf einmal tauchen auch Fehlermeldungen auf, die ich so noch nicht gesehen habe:

Use of unintialized value $temperature in concatenatio (.) or string at /usr/share/FHEM/59_Weather.pm line 215, <$fh> line 192

und:

Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 128
Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 135Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 137

bin ich der Einzige der diese Probleme plötzlich hat? Ich habe bereits ein Backup von vor einer Woche eingespielt, bei dem ich sicher war, dass es noch funtkionierte.

Kennt jemand dieses Verhalten?

Viele Grüße
neo



Am Mittwoch, 22. August 2012 09:13:34 UTC+2 schrieb Mitch:
>
> Nein, habe im css nichts geänert.
>
> Wüsste gar nicht wo ;-)
>
> Am Mittwoch, 22. August 2012 09:10:55 UTC+2 schrieb UliM:
>>
>> hast du evtl feste koordinaten im css angegeben?
>
>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

Hallo

Bei mir sieht das leider auch so ähnlich aus:

Use of uninitialized value $temperature in concatenation (.) or string at
./FHEM/59_Weather.pm line 329, <$fh> line 129.
Use of uninitialized value $humidity in concatenation (.) or string at
./FHEM/59_Weather.pm line 329, <$fh> line 129.
Use of uninitialized value $wind in concatenation (.) or string at
./FHEM/59_Weather.pm line 329, <$fh> line 129.
Use of uninitialized value in string lt at fhem.pl line 1802, <$fh> line 26.
Use of uninitialized value in string lt at fhem.pl line 1802, <$fh> line 27.
Use of uninitialized value in string lt at fhem.pl line 1802, <$fh> line 28.


Weiss jemand schon mehr?

LG
Marco

On Tuesday, August 28, 2012 11:23:14 AM UTC+2, neomorph wrote:
>
> Hallo,
>
> ich weiss nicht was passiert ist, aber mein google-Wetter will auf einmal
> nicht mehr. Die letzten Daten habe ich gestern gegen 8:30 Uhr erhalten.
>
> Auszug aus meinem Wetter-Logfile:
>
> 2012-08-27_08:38:20 Wetter humidity: 90
> 2012-08-27_08:38:20 Wetter wind: 18
>
> danach keine Einträge mehr...
>
> Seit dem erhalte ich keine Daten mehr. Auf einmal tauchen auch Fehlermeldungen auf, die ich so noch nicht gesehen habe:
>
> Use of unintialized value $temperature in concatenatio (.) or string at /usr/share/FHEM/59_Weather.pm line 215, <$fh> line 192
>
> und:
>
> Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 128
> Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 135Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 137
>
> bin ich der Einzige der diese Probleme plötzlich hat? Ich habe bereits ein Backup von vor einer Woche eingespielt, bei dem ich sicher war, dass es noch funtkionierte.
>
> Kennt jemand dieses Verhalten?
>
> Viele Grüße
> neo
>
>
>
> Am Mittwoch, 22. August 2012 09:13:34 UTC+2 schrieb Mitch:
>>
>> Nein, habe im css nichts geänert.
>>
>> Wüsste gar nicht wo ;-)
>>
>> Am Mittwoch, 22. August 2012 09:10:55 UTC+2 schrieb UliM:
>>>
>>> hast du evtl feste koordinaten im css angegeben?
>>
>>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

Bei mir empfängt er auch keine daaten :)

Hab gesehen wenn man die Google Weather api via browser aufruft, ist wohl
schon alles aufgebraucht, sprich die geben keine daten mehr frei..

Am Donnerstag, 8. November 2012 20:32:59 UTC+1 schrieb Marco:
>
> Hallo
>
> Bei mir sieht das leider auch so ähnlich aus:
>
> Use of uninitialized value $temperature in concatenation (.) or string at
> ./FHEM/59_Weather.pm line 329, <$fh> line 129.
> Use of uninitialized value $humidity in concatenation (.) or string at
> ./FHEM/59_Weather.pm line 329, <$fh> line 129.
> Use of uninitialized value $wind in concatenation (.) or string at
> ./FHEM/59_Weather.pm line 329, <$fh> line 129.
> Use of uninitialized value in string lt at fhem.pl line 1802, <$fh> line
> 26.
> Use of uninitialized value in string lt at fhem.pl line 1802, <$fh> line
> 27.
> Use of uninitialized value in string lt at fhem.pl line 1802, <$fh> line
> 28.
>
>
> Weiss jemand schon mehr?
>
> LG
> Marco
>
> On Tuesday, August 28, 2012 11:23:14 AM UTC+2, neomorph wrote:
>>
>> Hallo,
>>
>> ich weiss nicht was passiert ist, aber mein google-Wetter will auf einmal
>> nicht mehr. Die letzten Daten habe ich gestern gegen 8:30 Uhr erhalten.
>>
>> Auszug aus meinem Wetter-Logfile:
>>
>> 2012-08-27_08:38:20 Wetter humidity: 90
>> 2012-08-27_08:38:20 Wetter wind: 18
>>
>> danach keine Einträge mehr...
>>
>> Seit dem erhalte ich keine Daten mehr. Auf einmal tauchen auch Fehlermeldungen auf, die ich so noch nicht gesehen habe:
>>
>> Use of unintialized value $temperature in concatenatio (.) or string at /usr/share/FHEM/59_Weather.pm line 215, <$fh> line 192
>>
>> und:
>>
>> Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 128
>> Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 135Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 137
>>
>> bin ich der Einzige der diese Probleme plötzlich hat? Ich habe bereits ein Backup von vor einer Woche eingespielt, bei dem ich sicher war, dass es noch funtkionierte.
>>
>> Kennt jemand dieses Verhalten?
>>
>> Viele Grüße
>> neo
>>
>>
>>
>> Am Mittwoch, 22. August 2012 09:13:34 UTC+2 schrieb Mitch:
>>>
>>> Nein, habe im css nichts geänert.
>>>
>>> Wüsste gar nicht wo ;-)
>>>
>>> Am Mittwoch, 22. August 2012 09:10:55 UTC+2 schrieb UliM:
>>>>
>>>> hast du evtl feste koordinaten im css angegeben?
>>>
>>>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com

Guest

Originally posted by: <email address deleted>

Hi reacend!
Das ist aber schon seit August diesen Jahres so! Deshalb wurde auch auf
Yahoo im Modul umgestellt. Suche dir bei Yahoo die ID für deine Stadt und
richte dann das Modul ein.

Am Donnerstag, 29. November 2012 17:22:55 UTC+1 schrieb reacend:
>
> Bei mir empfängt er auch keine daaten :)
>
> Hab gesehen wenn man die Google Weather api via browser aufruft, ist wohl
> schon alles aufgebraucht, sprich die geben keine daten mehr frei..
>
> Am Donnerstag, 8. November 2012 20:32:59 UTC+1 schrieb Marco:
>>
>> Hallo
>>
>> Bei mir sieht das leider auch so ähnlich aus:
>>
>> Use of uninitialized value $temperature in concatenation (.) or string at
>> ./FHEM/59_Weather.pm line 329, <$fh> line 129.
>> Use of uninitialized value $humidity in concatenation (.) or string at
>> ./FHEM/59_Weather.pm line 329, <$fh> line 129.
>> Use of uninitialized value $wind in concatenation (.) or string at
>> ./FHEM/59_Weather.pm line 329, <$fh> line 129.
>> Use of uninitialized value in string lt at fhem.pl line 1802, <$fh> line
>> 26.
>> Use of uninitialized value in string lt at fhem.pl line 1802, <$fh> line
>> 27.
>> Use of uninitialized value in string lt at fhem.pl line 1802, <$fh> line
>> 28.
>>
>>
>> Weiss jemand schon mehr?
>>
>> LG
>> Marco
>>
>> On Tuesday, August 28, 2012 11:23:14 AM UTC+2, neomorph wrote:
>>>
>>> Hallo,
>>>
>>> ich weiss nicht was passiert ist, aber mein google-Wetter will auf
>>> einmal nicht mehr. Die letzten Daten habe ich gestern gegen 8:30 Uhr
>>> erhalten.
>>>
>>> Auszug aus meinem Wetter-Logfile:
>>>
>>> 2012-08-27_08:38:20 Wetter humidity: 90
>>> 2012-08-27_08:38:20 Wetter wind: 18
>>>
>>> danach keine Einträge mehr...
>>>
>>> Seit dem erhalte ich keine Daten mehr. Auf einmal tauchen auch Fehlermeldungen auf, die ich so noch nicht gesehen habe:
>>>
>>> Use of unintialized value $temperature in concatenatio (.) or string at /usr/share/FHEM/59_Weather.pm line 215, <$fh> line 192
>>>
>>> und:
>>>
>>> Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 128
>>> Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 135Use of uninitialized value in string lt at /us/bin/fhem.pl line 1784, <$fh> line 137
>>>
>>> bin ich der Einzige der diese Probleme plötzlich hat? Ich habe bereits ein Backup von vor einer Woche eingespielt, bei dem ich sicher war, dass es noch funtkionierte.
>>>
>>> Kennt jemand dieses Verhalten?
>>>
>>> Viele Grüße
>>> neo
>>>
>>>
>>>
>>> Am Mittwoch, 22. August 2012 09:13:34 UTC+2 schrieb Mitch:
>>>>
>>>> Nein, habe im css nichts geänert.
>>>>
>>>> Wüsste gar nicht wo ;-)
>>>>
>>>> Am Mittwoch, 22. August 2012 09:10:55 UTC+2 schrieb UliM:
>>>>>
>>>>> hast du evtl feste koordinaten im css angegeben?
>>>>
>>>>

--
To unsubscribe from this group, send email to
fhem-users+unsubscribe@googlegroups.com