From 9b30346de0148e0e38921c31a393639c9c4fbb14 Mon Sep 17 00:00:00 2001 From: Safi105 Date: Tue, 13 Aug 2024 07:04:10 +0200 Subject: [PATCH] Update x1_mini_v34.py In my Inverter there is no Total Feed-in Energy but on the same place there are the operating hours og the inverter --- solax/inverters/x1_mini_v34.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/solax/inverters/x1_mini_v34.py b/solax/inverters/x1_mini_v34.py index 89cb163..879a77c 100644 --- a/solax/inverters/x1_mini_v34.py +++ b/solax/inverters/x1_mini_v34.py @@ -54,12 +54,14 @@ def response_decoder(cls): "PV1 Power": (7, Units.W), "PV2 Power": (8, Units.W), "Grid Frequency": (9, Units.HZ, div100), + "Mode": (10, None), "Total Energy": (11, Total(Units.KWH), div10), "Today's Energy": (13, DailyTotal(Units.KWH), div10), - "Total Feed-in Energy": (41, Total(Units.KWH), div10), + "Operating hours": (41, Total(Units.h), div10), "Total Consumption": (42, Total(Units.KWH), div10), "Power Now": (43, Units.W, div10), "Inverter Temperature": (55, Units.C), + "Ambient Temperature": (39, Units.C), } # pylint: enable=duplicate-code