From 0fda14d34178e0f97b5bcc22c523bf73a2bcac80 Mon Sep 17 00:00:00 2001 From: maslyankov Date: Mon, 6 Jan 2025 11:38:58 +0200 Subject: [PATCH] Fix load power sensors order --- src/sunsynk/definitions/three_phase_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sunsynk/definitions/three_phase_common.py b/src/sunsynk/definitions/three_phase_common.py index 9d8b6528..07581b9c 100644 --- a/src/sunsynk/definitions/three_phase_common.py +++ b/src/sunsynk/definitions/three_phase_common.py @@ -71,10 +71,10 @@ # Load Power ############# SENSORS += ( - Sensor((653, 659), "Load power", WATT, -1), Sensor((650, 656), "Load L1 power", WATT, -1), Sensor((651, 657), "Load L2 power", WATT, -1), Sensor((652, 658), "Load L3 power", WATT, -1), + Sensor((653, 659), "Load power", WATT, -1), Sensor(644, "Load L1 voltage", VOLT, 0.1), Sensor(645, "Load L2 voltage", VOLT, 0.1), Sensor(646, "Load L3 voltage", VOLT, 0.1),