Skip to content

Commit

Permalink
Fix some threephase hv definition factors
Browse files Browse the repository at this point in the history
  • Loading branch information
maslyankov committed Dec 28, 2024
1 parent 07fe3de commit a6a8d6a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/sunsynk/definitions/three_phase_hv.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,13 @@
},
),
EnumSensor(229, "Battery 1 Manufacturer", options=hv_battery_manufacturers),
Sensor(210, "Battery 1 BMS charging voltage", VOLT, 0.01),
Sensor(211, "Battery 1 BMS discharging voltage", VOLT, 0.01),
Sensor(210, "Battery 1 BMS charging voltage", VOLT, 0.1),
Sensor(211, "Battery 1 BMS discharging voltage", VOLT, 0.1),
Sensor(212, "Battery 1 BMS charging current limit", AMPS),
Sensor(213, "Battery 1 BMS discharging current limit", AMPS),
Sensor(214, "Battery 1 BMS SOC", "%"),
Sensor(215, "Battery 1 BMS voltage", VOLT, 0.01),
Sensor(216, "Battery 1 BMS current", AMPS),
Sensor(215, "Battery 1 BMS voltage", VOLT, 0.1),
Sensor(216, "Battery 1 BMS current", AMPS, 0.1),
TempSensor(217, "Battery 1 BMS temperature", CELSIUS, 0.1),
Sensor(218, "Battery 1 BMS max charge current limit", AMPS),
Sensor(219, "Battery 1 BMS max discharge current limit", AMPS),
Expand Down Expand Up @@ -205,7 +205,7 @@
Sensor(244, "Battery 2 BMS discharging current limit", AMPS),
Sensor(245, "Battery 2 BMS SOC", "%"),
Sensor(246, "Battery 2 BMS voltage", VOLT, 0.1),
Sensor(247, "Battery 2 BMS current", AMPS),
Sensor(247, "Battery 2 BMS current", AMPS, 0.1),
TempSensor(248, "Battery 2 BMS temperature", CELSIUS, 0.1),
Sensor(249, "Battery 2 BMS max charge current limit", AMPS),
Sensor(250, "Battery 2 BMS max discharge current limit", AMPS),
Expand Down

0 comments on commit a6a8d6a

Please sign in to comment.