2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

76_SolarForecast.pm: contrib 0.51.0

git-svn-id: https://svn.fhem.de/fhem/trunk@24579 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2021-06-03 16:44:26 +00:00
parent db189d9208
commit f0fd14052a

View File

@ -3737,7 +3737,9 @@ sub forecastGraphic { ## no critic 'complexity'
my $ftui = $paref->{ftui}; my $ftui = $paref->{ftui};
my $type = $hash->{TYPE}; my $type = $hash->{TYPE};
my $hfcg = {}; #(hfcg = hash forecast graphic)
my %hfch;
my $hfcg = \%hfch; #(hfcg = hash forecast graphic)
# Verbraucherlegende und Steuerung # Verbraucherlegende und Steuerung
################################### ###################################
@ -3799,8 +3801,6 @@ sub forecastGraphic { ## no critic 'complexity'
my $val3 = $back->{val3}; my $val3 = $back->{val3};
my $val4 = $back->{val4}; my $val4 = $back->{val4};
my $thishour = $back->{thishour}; my $thishour = $back->{thishour};
$hfcg = $back->{hfcg};
# get consumer list and display it in Graphics # get consumer list and display it in Graphics
################################################ ################################################
@ -4600,7 +4600,6 @@ sub _forecastGraphicFirstHour {
val3 => $val3, val3 => $val3,
val4 => $val4, val4 => $val4,
thishour => $thishour, thishour => $thishour,
hfcg => $hfcg,
}; };
return ($back); return ($back);