mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-22 21:36:11 +02:00
0.7.18 - 2023-07-26
* next attempt to fix yield day for multiple inverters #1016
This commit is contained in:
parent
812adce64e
commit
58f19f88d0
3 changed files with 8 additions and 6 deletions
|
@ -403,11 +403,11 @@ class Inverter {
|
|||
if(avail) {
|
||||
if(status < InverterStatus::PRODUCING)
|
||||
status = InverterStatus::STARTING;
|
||||
} else {
|
||||
if((*timestamp - recordMeas.ts) > INVERTER_OFF_THRES_SEC)
|
||||
status = InverterStatus::OFF;
|
||||
else
|
||||
status = InverterStatus::WAS_ON;
|
||||
} else {
|
||||
if((*timestamp - recordMeas.ts) < INVERTER_OFF_THRES_SEC)
|
||||
status = InverterStatus::OFF;
|
||||
}
|
||||
|
||||
return avail;
|
||||
|
@ -417,8 +417,7 @@ class Inverter {
|
|||
bool producing = false;
|
||||
DPRINTLN(DBG_VERBOSE, F("hmInverter.h:isProducing"));
|
||||
if(isAvailable()) {
|
||||
uint8_t pos = getPosByChFld(CH0, FLD_PAC, &recordMeas);
|
||||
producing = (getValue(pos, &recordMeas) > INACT_PWR_THRESH);
|
||||
producing = (getChannelFieldValue(CH0, FLD_PAC, &recordMeas) > INACT_PWR_THRESH);
|
||||
|
||||
if(producing)
|
||||
status = InverterStatus::PRODUCING;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue