mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 09:16:53 +00:00
76_Solarforcast: contrib 0.2.0
git-svn-id: https://svn.fhem.de/fhem/trunk@23551 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
6726f2828e
commit
87c5d86762
@ -2284,8 +2284,8 @@ sub setPVhistory {
|
||||
my $name = $paref->{name};
|
||||
my $t = $paref->{t}; # aktuelle Unix-Zeit
|
||||
my $chour = $paref->{chour};
|
||||
my $ethishour = $paref->{ethishour};
|
||||
my $calcpv = $paref->{calcpv};
|
||||
my $ethishour = $paref->{ethishour} // 0;
|
||||
my $calcpv = $paref->{calcpv} // 0;
|
||||
|
||||
my $type = $hash->{TYPE};
|
||||
my $day = strftime "%d", localtime($t); # aktueller Tag
|
||||
@ -2311,8 +2311,10 @@ sub listPVHistory {
|
||||
my $day = shift;
|
||||
my $ret;
|
||||
for my $key (sort{$a<=>$b} keys %{$pvhh->{$day}}) {
|
||||
$ret .= "\n " if($ret);
|
||||
$ret .= $key." => pvreal:".$pvhh->{$day}{$key}{pvrl}.", pvforecast:".$pvhh->{$day}{$key}{pvfc};
|
||||
my $pvrl = $pvhh->{$day}{$key}{pvrl} // 0;
|
||||
my $pvfc = $pvhh->{$day}{$key}{pvfc} // 0;
|
||||
$ret .= "\n " if($ret);
|
||||
$ret .= $key." => pvreal: $pvrl, pvforecast: $pvfc";
|
||||
}
|
||||
return $ret;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user