From f7394e9dff0da27c1d250af3fc5560717682b691 Mon Sep 17 00:00:00 2001 From: nenone78 <136378814+nenone78@users.noreply.github.com> Date: Wed, 3 Dec 2025 15:02:30 +0100 Subject: [PATCH] Add Grid TOT Power to inverter data mapping the 9th position of the [DATA] set is the total of the previous three (6th 7th and 8th. In this way you have the totale power of the inverter, without having to do an helper --- solax/inverters/x3_hybrid_g4.py | 1 + 1 file changed, 1 insertion(+) diff --git a/solax/inverters/x3_hybrid_g4.py b/solax/inverters/x3_hybrid_g4.py index 4e549fb..62d32dc 100644 --- a/solax/inverters/x3_hybrid_g4.py +++ b/solax/inverters/x3_hybrid_g4.py @@ -83,6 +83,7 @@ def response_decoder(cls): "Grid 1 Power": (6, Units.W, to_signed), "Grid 2 Power": (7, Units.W, to_signed), "Grid 3 Power": (8, Units.W, to_signed), + "Grid TOT Power": (9, Units.W, to_signed), "PV1 Voltage": (10, Units.V, div10), "PV2 Voltage": (11, Units.V, div10), "PV1 Current": (12, Units.A, div10),