Skip to content

Commit

Permalink
Fix wrong ac attribute #49
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre0512 committed May 15, 2023
1 parent 8167677 commit 617ea0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/hon/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async def async_set_swing_mode(self, swing_mode):
async def async_set_temperature(self, **kwargs):
if (temperature := kwargs.get(ATTR_TEMPERATURE)) is None:
return False
self._device.settings["settings.selTemp"].value = temperature
self._device.settings["settings.tempSel"].value = int(temperature)
await self._device.commands["settings"].send()

@callback
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hon/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/Andre0512/hon/issues",
"requirements": ["pyhOn==0.10.6"],
"version": "0.7.3"
"version": "0.8.0-beta.1"
}

0 comments on commit 617ea0f

Please sign in to comment.