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 GitHub
parent 0e515b2e1f
commit b025942a14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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):