Compare commits
3 Commits
v0.8.0-bet
...
v0.8.1-bet
Author | SHA1 | Date | |
---|---|---|---|
6084e4a034 | |||
5bc3120000 | |||
0f9f0dee4c |
@ -12,9 +12,9 @@ Home Assistant integration for [Haier's mobile app hOn](https://hon-smarthome.co
|
|||||||
- [Washer Dryer](https://github.com/Andre0512/hon#washer-dryer)
|
- [Washer Dryer](https://github.com/Andre0512/hon#washer-dryer)
|
||||||
- [Oven](https://github.com/Andre0512/hon#oven)
|
- [Oven](https://github.com/Andre0512/hon#oven)
|
||||||
- [Dish Washer](https://github.com/Andre0512/hon#dish-washer)
|
- [Dish Washer](https://github.com/Andre0512/hon#dish-washer)
|
||||||
|
- [Air conditioner](https://github.com/Andre0512/hon#air-conditioner)
|
||||||
|
- [Fridge](https://github.com/Andre0512/hon#fridge)
|
||||||
- [Hob](https://github.com/Andre0512/hon#hob) [BETA]
|
- [Hob](https://github.com/Andre0512/hon#hob) [BETA]
|
||||||
- [Air conditioner](https://github.com/Andre0512/hon#air-conditioner) [BETA]
|
|
||||||
- [Fridge](https://github.com/Andre0512/hon#fridge) [BETA]
|
|
||||||
- [Hood](https://github.com/Andre0512/hon#hood) [BETA]
|
- [Hood](https://github.com/Andre0512/hon#hood) [BETA]
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
@ -150,11 +150,13 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
|
|||||||
async def async_set_hvac_mode(self, hvac_mode):
|
async def async_set_hvac_mode(self, hvac_mode):
|
||||||
self._attr_hvac_mode = hvac_mode
|
self._attr_hvac_mode = hvac_mode
|
||||||
if hvac_mode == HVACMode.OFF:
|
if hvac_mode == HVACMode.OFF:
|
||||||
await self._device.commands["stopProgram"].send()
|
command = "stopProgram"
|
||||||
else:
|
else:
|
||||||
mode = HON_HVAC_PROGRAM[hvac_mode]
|
mode = HON_HVAC_PROGRAM[hvac_mode]
|
||||||
self._device.settings["startProgram.program"].value = mode
|
self._device.settings["startProgram.program"].value = mode
|
||||||
await self._device.commands["startProgram"].send()
|
command = "startProgram"
|
||||||
|
await self._device.commands[command].send()
|
||||||
|
self._device.sync_command(command, "settings")
|
||||||
self.async_write_ha_state()
|
self.async_write_ha_state()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
"issue_tracker": "https://github.com/Andre0512/hon/issues",
|
"issue_tracker": "https://github.com/Andre0512/hon/issues",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"pyhOn==0.12.2"
|
"pyhOn==0.12.3"
|
||||||
],
|
],
|
||||||
"version": "0.8.0-beta.10"
|
"version": "0.8.1-beta.1"
|
||||||
}
|
}
|
||||||
|
4
info.md
4
info.md
@ -10,9 +10,9 @@ Support for home appliances of Haier's mobile app hOn.
|
|||||||
- [Washer Dryer](https://github.com/Andre0512/hon#washer-dryer)
|
- [Washer Dryer](https://github.com/Andre0512/hon#washer-dryer)
|
||||||
- [Oven](https://github.com/Andre0512/hon#oven)
|
- [Oven](https://github.com/Andre0512/hon#oven)
|
||||||
- [Dish Washer](https://github.com/Andre0512/hon#dish-washer)
|
- [Dish Washer](https://github.com/Andre0512/hon#dish-washer)
|
||||||
|
- [Air conditioner](https://github.com/Andre0512/hon#air-conditioner)
|
||||||
|
- [Fridge](https://github.com/Andre0512/hon#fridge)
|
||||||
- [Hob](https://github.com/Andre0512/hon#hob) [BETA]
|
- [Hob](https://github.com/Andre0512/hon#hob) [BETA]
|
||||||
- [Air conditioner](https://github.com/Andre0512/hon#air-conditioner) [BETA]
|
|
||||||
- [Fridge](https://github.com/Andre0512/hon#fridge) [BETA]
|
|
||||||
- [Hood](https://github.com/Andre0512/hon#hood) [BETA]
|
- [Hood](https://github.com/Andre0512/hon#hood) [BETA]
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
Reference in New Issue
Block a user