Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #172

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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, Units.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, Units.NONE),
"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
Loading