mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-22 20:24:36 +00:00
76_SolarForecast: new spec. Reading key todayConsumptionForecastDay
git-svn-id: https://svn.fhem.de/fhem/trunk@29707 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
81882c46bf
commit
0ea16bf0dd
@ -1275,13 +1275,13 @@ my %hcsr = (
|
||||
for my $csr (1..MAXCONSUMER) {
|
||||
$csr = sprintf "%02d", $csr;
|
||||
|
||||
$hcsr{'currentRunMtsConsumer_'.$csr}{fnr} = 4;
|
||||
$hcsr{'currentRunMtsConsumer_'.$csr}{fnr} = 5;
|
||||
$hcsr{'currentRunMtsConsumer_'.$csr}{fn} = \&ConsumerVal;
|
||||
$hcsr{'currentRunMtsConsumer_'.$csr}{par} = 'cycleTime';
|
||||
$hcsr{'currentRunMtsConsumer_'.$csr}{unit} = ' min';
|
||||
$hcsr{'currentRunMtsConsumer_'.$csr}{def} = 0;
|
||||
|
||||
$hcsr{'runTimeAvgDayConsumer_'.$csr}{fnr} = 4;
|
||||
$hcsr{'runTimeAvgDayConsumer_'.$csr}{fnr} = 5;
|
||||
$hcsr{'runTimeAvgDayConsumer_'.$csr}{fn} = \&ConsumerVal;
|
||||
$hcsr{'runTimeAvgDayConsumer_'.$csr}{par} = 'runtimeAvgDay';
|
||||
$hcsr{'runTimeAvgDayConsumer_'.$csr}{unit} = ' min';
|
||||
@ -1291,19 +1291,19 @@ my %hcsr = (
|
||||
for my $bn (1..MAXBATTERIES) {
|
||||
$bn = sprintf "%02d", $bn;
|
||||
|
||||
$hcsr{'daysUntilBatteryCare_'.$bn}{fnr} = 4;
|
||||
$hcsr{'daysUntilBatteryCare_'.$bn}{fnr} = 5;
|
||||
$hcsr{'daysUntilBatteryCare_'.$bn}{fn} = \&CircularVal;
|
||||
$hcsr{'daysUntilBatteryCare_'.$bn}{par} = 99;
|
||||
$hcsr{'daysUntilBatteryCare_'.$bn}{unit} = '';
|
||||
$hcsr{'daysUntilBatteryCare_'.$bn}{def} = '-';
|
||||
|
||||
$hcsr{'todayBatIn_'.$bn}{fnr} = 4;
|
||||
$hcsr{'todayBatIn_'.$bn}{fnr} = 5;
|
||||
$hcsr{'todayBatIn_'.$bn}{fn} = \&CircularVal;
|
||||
$hcsr{'todayBatIn_'.$bn}{par} = 99;
|
||||
$hcsr{'todayBatIn_'.$bn}{unit} = ' Wh';
|
||||
$hcsr{'todayBatIn_'.$bn}{def} = 0;
|
||||
|
||||
$hcsr{'todayBatOut_'.$bn}{fnr} = 4;
|
||||
$hcsr{'todayBatOut_'.$bn}{fnr} = 5;
|
||||
$hcsr{'todayBatOut_'.$bn}{fn} = \&CircularVal;
|
||||
$hcsr{'todayBatOut_'.$bn}{par} = 99;
|
||||
$hcsr{'todayBatOut_'.$bn}{unit} = ' Wh';
|
||||
|
Loading…
x
Reference in New Issue
Block a user