Fix controlling AC temperature in airtouch5 (#125394)

Fix controlling AC temperature
This commit is contained in:
Dave Leaver 2024-09-06 19:06:33 +12:00 committed by Paulus Schoutsen
parent e80e189e6b
commit 973e43ae6a

View File

@ -262,7 +262,7 @@ class Airtouch5AC(Airtouch5ClimateEntity):
_LOGGER.debug("Argument `temperature` is missing in set_temperature")
return
await self._control(temp=temp)
await self._control(setpoint=SetpointControl.CHANGE_SETPOINT, temp=temp)
class Airtouch5Zone(Airtouch5ClimateEntity):