Skip to content

Commit c381488

Browse files
authored
Correction to x3_hybrid_g4.py
In Feed-in and Consumed Energy, total and today were missing and wrong, respectively.
1 parent 9f5c7cf commit c381488

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

solax/inverters/x3_hybrid_g4.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ def response_decoder(cls):
118118
"PV Energy total": (pack_u16(80, 81), Total(Units.KWH), div10),
119119
"EPS Energy total": (pack_u16(83, 84), Total(Units.KWH), div10),
120120
"EPS Energy today": (85, DailyTotal(Units.KWH), div10),
121-
"Feed-in Energy": (pack_u16(86, 87), Total(Units.KWH), div100),
122-
"Consumed Energy": (pack_u16(88, 89), Total(Units.KWH), div100),
123-
"Feed-in Energy total": (pack_u16(90, 91), Total(Units.KWH), div100),
124-
"Consumed Energy total": (pack_u16(92, 93), Total(Units.KWH), div100),
121+
"Feed-in Energy total": (pack_u16(86, 87), Total(Units.KWH), div100),
122+
"Consumed Energy total": (pack_u16(88, 89), Total(Units.KWH), div100),
123+
"Feed-in Energy today": (pack_u16(90, 91), Total(Units.KWH), div100),
124+
"Consumed Energy today": (pack_u16(92, 93), Total(Units.KWH), div100),
125125
"Battery Remaining Capacity": (103, Units.PERCENT),
126126
"Battery Temperature": (105, Units.C, to_signed),
127127
"Battery Remaining Energy": (

0 commit comments

Comments
 (0)