From 6980df7a367c2764c4234394f2c866df96524f3c Mon Sep 17 00:00:00 2001 From: rivo nurges Date: Tue, 25 Jun 2024 00:43:39 +0300 Subject: [PATCH] Add PV Power MathSensor to LV too, HV has it already --- src/sunsynk/definitions/three_phase_common.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/sunsynk/definitions/three_phase_common.py b/src/sunsynk/definitions/three_phase_common.py index 9af25915..4fa7be05 100644 --- a/src/sunsynk/definitions/three_phase_common.py +++ b/src/sunsynk/definitions/three_phase_common.py @@ -68,6 +68,15 @@ Sensor(646, "Load L3 voltage", VOLT, 0.1), ) +############## +# Solar Power +############## +SENSORS += ( + MathSensor( + (672, 673, 674, 675), "PV power", WATT, factors=(1, 1, 1, 1) + ), # pv1,pv2,pv3,pv4 power +) + ##################### # MPPT 1 Solar Power #####################