mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-23 05:46:09 +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
|
@ -1,5 +1,8 @@
|
|||
# Development Changes
|
||||
|
||||
## 0.7.18 - 2023-07-26
|
||||
* next attempt to fix yield day for multiple inverters #1016
|
||||
|
||||
## 0.7.17 - 2023-07-25
|
||||
* next attempt to fix yield day for multiple inverters #1016
|
||||
* added two more states for the inverter status (also docu)
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
//-------------------------------------
|
||||
#define VERSION_MAJOR 0
|
||||
#define VERSION_MINOR 7
|
||||
#define VERSION_PATCH 17
|
||||
#define VERSION_PATCH 18
|
||||
|
||||
//-------------------------------------
|
||||
typedef struct {
|
||||
|
|
|
@ -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