Skip to content

Commit

Permalink
Correction to x3_hybrid_g4.py
Browse files Browse the repository at this point in the history
In Feed-in and Consumed Energy, total and today were missing and wrong, respectively.
  • Loading branch information
rupert-sch authored Oct 5, 2024
1 parent 9f5c7cf commit c381488
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solax/inverters/x3_hybrid_g4.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ def response_decoder(cls):
"PV Energy total": (pack_u16(80, 81), Total(Units.KWH), div10),
"EPS Energy total": (pack_u16(83, 84), Total(Units.KWH), div10),
"EPS Energy today": (85, DailyTotal(Units.KWH), div10),
"Feed-in Energy": (pack_u16(86, 87), Total(Units.KWH), div100),
"Consumed Energy": (pack_u16(88, 89), Total(Units.KWH), div100),
"Feed-in Energy total": (pack_u16(90, 91), Total(Units.KWH), div100),
"Consumed Energy total": (pack_u16(92, 93), Total(Units.KWH), div100),
"Feed-in Energy total": (pack_u16(86, 87), Total(Units.KWH), div100),
"Consumed Energy total": (pack_u16(88, 89), Total(Units.KWH), div100),
"Feed-in Energy today": (pack_u16(90, 91), Total(Units.KWH), div100),
"Consumed Energy today": (pack_u16(92, 93), Total(Units.KWH), div100),
"Battery Remaining Capacity": (103, Units.PERCENT),
"Battery Temperature": (105, Units.C, to_signed),
"Battery Remaining Energy": (
Expand Down

0 comments on commit c381488

Please sign in to comment.