2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-19 18:56:03 +00:00

76_Solarforcast: contrib 0.49.3

git-svn-id: https://svn.fhem.de/fhem/trunk@24554 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2021-06-01 06:40:45 +00:00
parent b685cb73f6
commit 72cbf176fb

View File

@ -3609,8 +3609,8 @@ sub forecastGraphic { ## no critic 'complexity'
##########################
my $day;
my $t = NexthoursVal ($hash, "NextHour00", "starttime", '0000-00-00 24');
my (undef,undef,$day_str,$thishour) = $t =~ m/(\d{4})-(\d{2})-(\d{2})\s(\d{2})/x;
my $t = NexthoursVal ($hash, "NextHour00", "starttime", '0000-00-00 24');
my ($year,$month,$day_str,$thishour) = $t =~ m/(\d{4})-(\d{2})-(\d{2})\s(\d{2})/x;
$thishour++;
@ -3621,8 +3621,7 @@ sub forecastGraphic { ## no critic 'complexity'
$hfcg->{0}{day_str} = $day_str;
$day = int($day_str);
$hfcg->{0}{day} = $day;
# $hfcg->{0}{mktime} = fhemTimeLocal(0,0,$thishour,$day,int($month)-1,$year-1900); <-falsch !!
$hfcg->{0}{mktime} = timestringToTimestamp ($t); # gleich die Unix Zeit dazu holen
$hfcg->{0}{mktime} = fhemTimeLocal(0,0,$thishour,$day,int($month)-1,$year-1900); # gleich die Unix Zeit dazu holen
my $val1 = 0;
my $val2 = 0;