diff --git a/src/sunsynk/definitions/three_phase_hv.py b/src/sunsynk/definitions/three_phase_hv.py index 4f8de83f..65e406ed 100644 --- a/src/sunsynk/definitions/three_phase_hv.py +++ b/src/sunsynk/definitions/three_phase_hv.py @@ -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), @@ -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),