Skip to content

Commit

Permalink
Update x1_mini_v34.py
Browse files Browse the repository at this point in the history
In my Inverter there is no Total Feed-in Energy but on the same place there are the operating hours og the inverter
  • Loading branch information
Safi105 authored Aug 13, 2024
1 parent fedda9d commit 9b30346
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion solax/inverters/x1_mini_v34.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9b30346

Please sign in to comment.