From 2127b0b0802c485740189b579ab88487dfd7ab01 Mon Sep 17 00:00:00 2001 From: Bernhard Kirchen Date: Sat, 24 Aug 2024 21:12:25 +0200 Subject: [PATCH] Fix: SMA HomeManager PowerMeter must announce new values the SMA power meter implementation did not announce that it received a new datum, such that the power meter data age was never reset. this made the power meter values outdated and hence invalid, even though new values were received and processed. --- src/PowerMeterUdpSmaHomeManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PowerMeterUdpSmaHomeManager.cpp b/src/PowerMeterUdpSmaHomeManager.cpp index 2baa9c43..330d9737 100644 --- a/src/PowerMeterUdpSmaHomeManager.cpp +++ b/src/PowerMeterUdpSmaHomeManager.cpp @@ -139,6 +139,7 @@ uint8_t* PowerMeterUdpSmaHomeManager::decodeGroup(uint8_t* offset, uint16_t grou Soutput(kanal, index, art, tarif, "Leistung L2", _powerMeterL2, timestamp); Soutput(kanal, index, art, tarif, "Leistung L3", _powerMeterL3, timestamp); count = 0; + gotUpdate(); } continue;