From b47998cba3e943534f523420ce82596b77707234 Mon Sep 17 00:00:00 2001 From: nenone78 <136378814+nenone78@users.noreply.github.com> Date: Thu, 4 Dec 2025 13:28:29 +0100 Subject: [PATCH] Add Inverter Total Power to data mapping Added the 9th value od the DATA mapping (it is the sum of the 3 prevpous ones, so you do not have 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..76c011f 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), + "Inverter Total Power": (9, Units.W, to_signed), "PV1 Voltage": (10, Units.V, div10), "PV2 Voltage": (11, Units.V, div10), "PV1 Current": (12, Units.A, div10),