diff --git a/custom_components/garo_wallbox/garo.py b/custom_components/garo_wallbox/garo.py index 3d4c096..54f5f00 100644 --- a/custom_components/garo_wallbox/garo.py +++ b/custom_components/garo_wallbox/garo.py @@ -130,6 +130,8 @@ def __init__(self,response): self.power_mode = response['powerMode'] self.current_charging_current = max(0,response['currentChargingCurrent'] / 1000) self.current_charging_power = max(0,response['currentChargingPower']) + if self.current_charging_power > 32000: + self.current_charging_power = 0 self.acc_session_energy = response['accSessionEnergy'] self.latest_reading = response['latestReading'] self.current_temperature = response['currentTemperature']