Skip to content

Commit

Permalink
Fix controlling AC temperature in airtouch5 (home-assistant#125394)
Browse files Browse the repository at this point in the history
Fix controlling AC temperature
  • Loading branch information
danzel authored and Gigatrappeur committed Sep 7, 2024
1 parent b4eabf6 commit ac5eb10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/airtouch5/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ async def async_set_temperature(self, **kwargs: Any) -> None:
_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):
Expand Down

0 comments on commit ac5eb10

Please sign in to comment.