From fe7863bbf52723ff1d062baf9f7713a092a8a63f Mon Sep 17 00:00:00 2001 From: Patrick Amrhein Date: Mon, 8 Apr 2024 12:25:46 +0200 Subject: [PATCH] Bugfix powermeter_dev, log --- src/plugins/zeroExport/zeroExport.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/plugins/zeroExport/zeroExport.h b/src/plugins/zeroExport/zeroExport.h index e3b7d802..45c45f36 100644 --- a/src/plugins/zeroExport/zeroExport.h +++ b/src/plugins/zeroExport/zeroExport.h @@ -139,7 +139,7 @@ class ZeroExport { cfgGroup->state = zeroExportState::CONTROLLER; #if defined(ZEROEXPORT_DEV_POWERMETER) cfgGroup->lastRefresh = millis(); - cfgGroup->state = zeroExportState::PUBLISH; + cfgGroup->state = zeroExportState::WAITREFRESH; #endif } else { cfgGroup->wait = 3000; @@ -433,7 +433,7 @@ class ZeroExport { // Calculate int32_t ivLp = iv->actPowerLimit; int32_t ivPm = iv->getMaxPower(); - ; + int32_t ivL = (ivPm * ivLp) / 100; int32_t zeL = mCfg->groups[group].inverters[inv].limit; @@ -843,6 +843,7 @@ class ZeroExport { mCfg->groups[group].lastRun = *tsp; if (mCfg->debug) mLog["t"] = "groupGetPowermeter"; + mLog["g"] = group; *doLog = true; mCfg->groups[group].pm_P = mPowermeter.getDataAVG(group).P;