Skip to content

Commit

Permalink
Fix load power sensors order
Browse files Browse the repository at this point in the history
  • Loading branch information
maslyankov committed Jan 6, 2025
1 parent 09b8814 commit 0fda14d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sunsynk/definitions/three_phase_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@
# Load Power
#############
SENSORS += (
Sensor((653, 659), "Load power", WATT, -1),
Sensor((650, 656), "Load L1 power", WATT, -1),
Sensor((651, 657), "Load L2 power", WATT, -1),
Sensor((652, 658), "Load L3 power", WATT, -1),
Sensor((653, 659), "Load power", WATT, -1),
Sensor(644, "Load L1 voltage", VOLT, 0.1),
Sensor(645, "Load L2 voltage", VOLT, 0.1),
Sensor(646, "Load L3 voltage", VOLT, 0.1),
Expand Down

0 comments on commit 0fda14d

Please sign in to comment.