From c1e6f9547c16d4035f7a560126473f75218bc475 Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Mon, 12 Jun 2023 12:28:39 +0200 Subject: [PATCH 1/8] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 39 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 26 +++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..661bc9c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,39 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: Andre0512 + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Environment (please complete the following information):** + - Home Assistant Version: [e.g. `2023.6.1`] + - hOn Integration Version [e.g. `0.8.1`, can be found in HACS] + - pyhOn Version [e.g. `0.13.1`, can be found in device log] + +**Additional context** +Add any other context about the problem here. + +**Device Log** +Post your device info here (if available) +1. Enable the "Show Device Info" button +_This button can be found in the diagnostic section of your device or in the entity overview if "show disabled entities" is enabled._ +2. Press the button to create a notification +3. Open home assistant notifications and copy the message (Crtl+A, Ctrl+C) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..cb133ce --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,26 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +assignees: Andre0512 + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Device Log** +Post your device info here (if available) +1. Enable the "Show Device Info" button +_This button can be found in the diagnostic section of your device or in the entity overview if "show disabled entities" is enabled._ +2. Press the button to create a notification +3. Open home assistant notifications and copy the message (Crtl+A, Ctrl+C) +**Additional context** +Add any other context or screenshots about the feature request here. From ae985cb0d94648f69dd7580ca0440bcb96395f8d Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Thu, 15 Jun 2023 23:52:56 +0200 Subject: [PATCH 2/8] Fix set select entity #70 --- custom_components/hon/select.py | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/custom_components/hon/select.py b/custom_components/hon/select.py index d15f4b3..f141ada 100644 --- a/custom_components/hon/select.py +++ b/custom_components/hon/select.py @@ -164,13 +164,24 @@ class HonSelectEntity(HonEntity, SelectEntity): @property def current_option(self) -> str | None: - value = self._device.settings.get(self.entity_description.key) - if value is None or value.value not in self._attr_options: + if not (setting := self._device.settings.get(self.entity_description.key)): return None - return value.value + value = setting.value + if self.entity_description.option_list: + value = self.entity_description.option_list.get(str(value), value) + if value not in self._attr_options: + return None + return value async def async_select_option(self, option: str) -> None: - self._device.settings[self.entity_description.key].value = option + setting = self._device.settings[self.entity_description.key] + if (options := self.entity_description.option_list) is not None: + setting.value = next( + (k for k, v in options.items() if k in setting.values and v == option), + option, + ) + else: + setting.value = option command = self.entity_description.key.split(".")[0] await self._device.commands[command].send() await self.coordinator.async_refresh() @@ -185,7 +196,7 @@ class HonSelectEntity(HonEntity, SelectEntity): else: self._attr_available = True self._attr_options: List[str] = setting.values - value = setting.value + value = str(setting.value) if self.entity_description.option_list is not None: self._attr_options = [ self.entity_description.option_list.get(k, k) @@ -211,7 +222,14 @@ class HonConfigSelectEntity(HonSelectEntity): entity_description: HonConfigSelectEntityDescription async def async_select_option(self, option: str) -> None: - self._device.settings[self.entity_description.key].value = option + setting = self._device.settings[self.entity_description.key] + if (options := self.entity_description.option_list) is not None: + setting.value = next( + (k for k, v in options.items() if k in setting.values and v == option), + option, + ) + else: + setting.value = option await self.coordinator.async_refresh() @property From 11a3d39f2ca6537b12e0497fc4468d9e28b46fc5 Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Fri, 16 Jun 2023 00:05:17 +0200 Subject: [PATCH 3/8] Bump version --- README.md | 24 ++++++++++++------------ custom_components/hon/manifest.json | 2 +- info.md | 24 ++++++++++++------------ 3 files changed, 25 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 06b1777..67065ef 100644 --- a/README.md +++ b/README.md @@ -37,18 +37,18 @@ _If the integration is not in the list, you need to clear the browser cache._ ## Supported Models Support has been confirmed for these models, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8). -| | **Haier** | **Hoover** | **Candy** | -|---------------------|------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| -| **Washing Machine** | HW90-B14TEAM5
HW100-B14959U1 | H-WASH 500
H7W4 48MBC-S | RO441286DWMC4-07
HW 68AMC/1-80
HWPD 69AMBC/1-S | -| **Tumble Dryer** | HD80-A3959 | H-DRY 500
H9A3TCBEXS-S
HLE C10DCE-80
NDE H10A2TCE-80
NDE H9A2TSBEXS-S
NDPHY10A2TCBEXSS | BCTDH7A1TE
CSOE C10DE-80
ROE H9A3TCEX-S | -| **Washer Dryer** | HWD100-B14979 | HWPS4954DAMR-11 | RPW41066BWMR/1-S | -| **Oven** | HWO60SM2F3XH | HSOT3161WG | | -| **Dish Washer** | XIB 3B2SFS-80
XIB 6B2D3FB | HFB 6B2S3FX | | -| **Air conditioner** | AD105S2SM3FA
AS20HPL1HRA
AS25PBAHRA
AS25S2SF1FA-WH
AS25TADHRA-2
AS35TADHRA-2
| | | -| **Fridge** | HFW7720ENMB | | CCE4T620EWU | -| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI | -| **Hood** | HADG6DS46BWIFI | | | -| **Wine Cellar** | HWS247FDU1 | | | +| | **Haier** | **Hoover** | **Candy** | +|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| +| **Washing Machine** | HW90-B14TEAM5
HW100-B14959U1 | H-WASH 500
H7W4 48MBC-S | CO4 107T1/2-07
RO44 1286DWMC4-07
HW 68AMC/1-80
HWPD 69AMBC/1-S | +| **Tumble Dryer** | HD80-A3959 | H-DRY 500
H9A3TCBEXS-S
HLE C10DCE-80
NDE H10A2TCE-80
NDE H9A2TSBEXS-S
NDPHY10A2TCBEXSS | BCTDH7A1TE
CSOE C10DE-80
ROE H9A3TCEX-S | +| **Washer Dryer** | HWD100-B14979 | HWPS4954DAMR-11 | RPW41066BWMR/1-S | +| **Oven** | HWO60SM2F3XH | HSOT3161WG | | +| **Dish Washer** | XIB 3B2SFS-80
XIB 6B2D3FB | HFB 6B2S3FX | | +| **Air conditioner** | AD105S2SM3FA
AS20HPL1HRA
AS25PBAHRA
AS25S2SF1FA-WH
AS25TADHRA-2
AS35S2SF2FA-3
AS35TADHRA-2
AS35TAMHRA-C | | | +| **Fridge** | HFW7720ENMB | | CCE4T620EWU | +| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI | +| **Hood** | HADG6DS46BWIFI | | | +| **Wine Cellar** | HWS247FDU1 | | | ## Supported Languages Translation of internal names like programs are available for all languages which are official supported by the hOn app: diff --git a/custom_components/hon/manifest.json b/custom_components/hon/manifest.json index d39f53b..a0f5e63 100644 --- a/custom_components/hon/manifest.json +++ b/custom_components/hon/manifest.json @@ -11,5 +11,5 @@ "requirements": [ "pyhOn==0.13.0" ], - "version": "0.9.0-beta.2" + "version": "0.9.0-beta.3" } diff --git a/info.md b/info.md index 1dafd95..1972063 100644 --- a/info.md +++ b/info.md @@ -26,18 +26,18 @@ _If the integration is not in the list, you need to clear the browser cache._ ## Supported Models Support has been confirmed for these models, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8). -| | **Haier** | **Hoover** | **Candy** | -|---------------------|------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------| -| **Washing Machine** | HW90-B14TEAM5
HW100-B14959U1 | H-WASH 500
H7W4 48MBC-S | RO441286DWMC4-07
HW 68AMC/1-80
HWPD 69AMBC/1-S | -| **Tumble Dryer** | HD80-A3959 | H-DRY 500
H9A3TCBEXS-S
HLE C10DCE-80
NDE H10A2TCE-80
NDE H9A2TSBEXS-S
NDPHY10A2TCBEXSS | BCTDH7A1TE
CSOE C10DE-80
ROE H9A3TCEX-S | -| **Washer Dryer** | HWD100-B14979 | HWPS4954DAMR-11 | RPW41066BWMR/1-S | -| **Oven** | HWO60SM2F3XH | HSOT3161WG | | -| **Dish Washer** | XIB 3B2SFS-80
XIB 6B2D3FB | HFB 6B2S3FX | | -| **Air conditioner** | AD105S2SM3FA
AS20HPL1HRA
AS25PBAHRA
AS25S2SF1FA-WH
AS25TADHRA-2
AS35TADHRA-2
| | | -| **Fridge** | HFW7720ENMB | | CCE4T620EWU | -| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI | -| **Hood** | HADG6DS46BWIFI | | | -| **Wine Cellar** | HWS247FDU1 | | | +| | **Haier** | **Hoover** | **Candy** | +|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| +| **Washing Machine** | HW90-B14TEAM5
HW100-B14959U1 | H-WASH 500
H7W4 48MBC-S | CO4 107T1/2-07
RO44 1286DWMC4-07
HW 68AMC/1-80
HWPD 69AMBC/1-S | +| **Tumble Dryer** | HD80-A3959 | H-DRY 500
H9A3TCBEXS-S
HLE C10DCE-80
NDE H10A2TCE-80
NDE H9A2TSBEXS-S
NDPHY10A2TCBEXSS | BCTDH7A1TE
CSOE C10DE-80
ROE H9A3TCEX-S | +| **Washer Dryer** | HWD100-B14979 | HWPS4954DAMR-11 | RPW41066BWMR/1-S | +| **Oven** | HWO60SM2F3XH | HSOT3161WG | | +| **Dish Washer** | XIB 3B2SFS-80
XIB 6B2D3FB | HFB 6B2S3FX | | +| **Air conditioner** | AD105S2SM3FA
AS20HPL1HRA
AS25PBAHRA
AS25S2SF1FA-WH
AS25TADHRA-2
AS35S2SF2FA-3
AS35TADHRA-2
AS35TAMHRA-C | | | +| **Fridge** | HFW7720ENMB | | CCE4T620EWU | +| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI | +| **Hood** | HADG6DS46BWIFI | | | +| **Wine Cellar** | HWS247FDU1 | | | ## Supported Languages Translation of internal names like programs are available for all languages which are official supported by the hOn app: From d83179a9fa01876d6f27fca6d60c0d81442f30ac Mon Sep 17 00:00:00 2001 From: Riccardo Briccola Date: Mon, 19 Jun 2023 16:47:30 +0200 Subject: [PATCH 4/8] Fix deprecated import --- custom_components/hon/button.py | 2 +- custom_components/hon/switch.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/hon/button.py b/custom_components/hon/button.py index 1309914..934370d 100644 --- a/custom_components/hon/button.py +++ b/custom_components/hon/button.py @@ -4,7 +4,7 @@ import pkg_resources from homeassistant.components import persistent_notification from homeassistant.components.button import ButtonEntityDescription, ButtonEntity from homeassistant.config_entries import ConfigEntry -from homeassistant.const import EntityCategory +from homeassistant.helpers.entity import EntityCategory from pyhon.appliance import HonAppliance from .const import DOMAIN diff --git a/custom_components/hon/switch.py b/custom_components/hon/switch.py index 03273a7..7351a08 100644 --- a/custom_components/hon/switch.py +++ b/custom_components/hon/switch.py @@ -5,7 +5,7 @@ from typing import Any from homeassistant.components.switch import SwitchEntityDescription, SwitchEntity from homeassistant.config_entries import ConfigEntry -from homeassistant.const import EntityCategory +from homeassistant.helpers.entity import EntityCategory from homeassistant.core import callback from pyhon.parameter.base import HonParameter from pyhon.parameter.range import HonParameterRange From a181359faaa4c9b91575e4f28732c1e7f9dd02b8 Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Wed, 21 Jun 2023 00:23:49 +0200 Subject: [PATCH 5/8] Refactor select entity --- custom_components/hon/select.py | 83 ++++++++++++++------------------- 1 file changed, 34 insertions(+), 49 deletions(-) diff --git a/custom_components/hon/select.py b/custom_components/hon/select.py index f141ada..2bee890 100644 --- a/custom_components/hon/select.py +++ b/custom_components/hon/select.py @@ -9,7 +9,6 @@ from homeassistant.config_entries import ConfigEntry from homeassistant.const import UnitOfTemperature, UnitOfTime, REVOLUTIONS_PER_MINUTE from homeassistant.core import callback from homeassistant.helpers.entity import EntityCategory -from pyhon.appliance import HonAppliance from . import const from .const import DOMAIN @@ -156,11 +155,8 @@ async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> Non async_add_entities(entities) -class HonSelectEntity(HonEntity, SelectEntity): - entity_description: HonSelectEntityDescription - - def __init__(self, hass, entry, device: HonAppliance, description) -> None: - super().__init__(hass, entry, device, description) +class HonConfigSelectEntity(HonEntity, SelectEntity): + entity_description: HonConfigSelectEntityDescription @property def current_option(self) -> str | None: @@ -173,41 +169,50 @@ class HonSelectEntity(HonEntity, SelectEntity): return None return value - async def async_select_option(self, option: str) -> None: - setting = self._device.settings[self.entity_description.key] + @property + def options(self) -> list[str]: + setting = self._device.settings.get(self.entity_description.key) + if setting is None: + return [] + options = self.entity_description.option_list or {} + return [options.get(str(key), key) for key in setting.values] + + def _option_to_number(self, option: str, values: List[str]): if (options := self.entity_description.option_list) is not None: - setting.value = next( - (k for k, v in options.items() if k in setting.values and v == option), + return next( + (k for k, v in options.items() if k in values and v == option), option, ) - else: - setting.value = option + return option + + async def async_select_option(self, option: str) -> None: + setting = self._device.settings[self.entity_description.key] + setting.value = self._option_to_number(option, setting.values) command = self.entity_description.key.split(".")[0] await self._device.commands[command].send() await self.coordinator.async_refresh() @callback def _handle_coordinator_update(self, update=True) -> None: - setting = self._device.settings.get(self.entity_description.key) - if setting is None: - self._attr_available = False - self._attr_options: List[str] = [] - value = None - else: - self._attr_available = True - self._attr_options: List[str] = setting.values - value = str(setting.value) - if self.entity_description.option_list is not None: - self._attr_options = [ - self.entity_description.option_list.get(k, k) - for k in self._attr_options - ] - if value is not None: - value = self.entity_description.option_list.get(value, value) - self._attr_native_value = value + self._attr_available = self.available + self._attr_options = self.options + self._attr_current_option = self.current_option if update: self.async_write_ha_state() + @property + def available(self) -> bool: + return self._device.settings.get(self.entity_description.key) is not None + + +class HonSelectEntity(HonConfigSelectEntity): + entity_description: HonSelectEntityDescription + + async def async_select_option(self, option: str) -> None: + setting = self._device.settings[self.entity_description.key] + setting.value = self._option_to_number(option, setting.values) + await self.coordinator.async_refresh() + @property def available(self) -> bool: """Return True if entity is available.""" @@ -216,23 +221,3 @@ class HonSelectEntity(HonEntity, SelectEntity): and self._device.get("remoteCtrValid", "1") == "1" and self._device.get("attributes.lastConnEvent.category") != "DISCONNECTED" ) - - -class HonConfigSelectEntity(HonSelectEntity): - entity_description: HonConfigSelectEntityDescription - - async def async_select_option(self, option: str) -> None: - setting = self._device.settings[self.entity_description.key] - if (options := self.entity_description.option_list) is not None: - setting.value = next( - (k for k, v in options.items() if k in setting.values and v == option), - option, - ) - else: - setting.value = option - await self.coordinator.async_refresh() - - @property - def available(self) -> bool: - """Return True if entity is available.""" - return super(SelectEntity, self).available From 78727e89cd6302e8e0e143d91e3147e69547c4dc Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Wed, 21 Jun 2023 00:59:00 +0200 Subject: [PATCH 6/8] Add entites for air purifier #72 --- README.md | 73 ++++++++++++++++-------- custom_components/hon/binary_sensor.py | 10 ++++ custom_components/hon/const.py | 15 +++++ custom_components/hon/number.py | 28 ++++++++- custom_components/hon/select.py | 13 +++++ custom_components/hon/sensor.py | 79 +++++++++++++++++++++++++- custom_components/hon/switch.py | 10 ++++ info.md | 29 +++++----- scripts/sensor_docs.py | 18 +++--- 9 files changed, 225 insertions(+), 50 deletions(-) diff --git a/README.md b/README.md index 67065ef..e5e4f34 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,10 @@ Home Assistant integration for [Haier's mobile app hOn](https://hon-smarthome.co - [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] +- [Induction Hob](https://github.com/Andre0512/hon#induction-hob) [BETA] - [Hood](https://github.com/Andre0512/hon#hood) [BETA] - [Wine Cellar](https://github.com/Andre0512/hon#wine-cellar) [BETA] +- [Air Purifier](https://github.com/Andre0512/hon#air-purifier) [BETA] ## Installation **Method 1:** [![Open your Home Assistant instance and open a repository inside the Home Assistant Community Store.](https://my.home-assistant.io/badges/hacs_repository.svg)](https://my.home-assistant.io/redirect/hacs_repository/?owner=Andre0512&repository=hon&category=integration) @@ -37,18 +38,18 @@ _If the integration is not in the list, you need to clear the browser cache._ ## Supported Models Support has been confirmed for these models, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8). -| | **Haier** | **Hoover** | **Candy** | -|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| -| **Washing Machine** | HW90-B14TEAM5
HW100-B14959U1 | H-WASH 500
H7W4 48MBC-S | CO4 107T1/2-07
RO44 1286DWMC4-07
HW 68AMC/1-80
HWPD 69AMBC/1-S | -| **Tumble Dryer** | HD80-A3959 | H-DRY 500
H9A3TCBEXS-S
HLE C10DCE-80
NDE H10A2TCE-80
NDE H9A2TSBEXS-S
NDPHY10A2TCBEXSS | BCTDH7A1TE
CSOE C10DE-80
ROE H9A3TCEX-S | -| **Washer Dryer** | HWD100-B14979 | HWPS4954DAMR-11 | RPW41066BWMR/1-S | -| **Oven** | HWO60SM2F3XH | HSOT3161WG | | -| **Dish Washer** | XIB 3B2SFS-80
XIB 6B2D3FB | HFB 6B2S3FX | | -| **Air conditioner** | AD105S2SM3FA
AS20HPL1HRA
AS25PBAHRA
AS25S2SF1FA-WH
AS25TADHRA-2
AS35S2SF2FA-3
AS35TADHRA-2
AS35TAMHRA-C | | | -| **Fridge** | HFW7720ENMB | | CCE4T620EWU | -| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI | -| **Hood** | HADG6DS46BWIFI | | | -| **Wine Cellar** | HWS247FDU1 | | | +| | **Haier** | **Hoover** | **Candy** | +|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| +| **Washing Machine** | HW90-B14TEAM5
HW100-B14959U1 | H-WASH 500
H7W4 48MBC-S | CO4 107T1/2-07
CBWO49TWME-S
RO44 1286DWMC4-07
HW 68AMC/1-80
HWPD 69AMBC/1-S | +| **Tumble Dryer** | HD80-A3959 | H-DRY 500
H9A3TCBEXS-S
HLE C10DCE-80
NDE H10A2TCE-80
NDE H9A2TSBEXS-S
NDPHY10A2TCBEXSS | BCTDH7A1TE
CSOE C10DE-80
ROE H9A3TCEX-S | +| **Washer Dryer** | HWD100-B14979 | HWPS4954DAMR-11 | RPW41066BWMR/1-S | +| **Oven** | HWO60SM2F3XH | HSOT3161WG | | +| **Dish Washer** | XIB 3B2SFS-80
XIB 6B2D3FB | HFB 6B2S3FX | | +| **Air Conditioner** | AD105S2SM3FA
AS20HPL1HRA
AS25PBAHRA
AS25S2SF1FA-WH
AS25TADHRA-2
AS35S2SF2FA-3
AS35TADHRA-2
AS35TAMHRA-C | | | +| **Fridge** | HFW7720ENMB | | CCE4T620EWU | +| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI | +| **Hood** | HADG6DS46BWIFI | | | +| **Wine Cellar** | HWS247FDU1 | | | ## Supported Languages Translation of internal names like programs are available for all languages which are official supported by the hOn app: @@ -137,7 +138,7 @@ For every device exists a hidden button which can be used to log all infos of yo ## Appliance Features -### Air conditioner +### Air Conditioner #### Controls | Name | Icon | Entity | Key | | --- | --- | --- | --- | @@ -171,7 +172,36 @@ For every device exists a hidden button which can be used to log all infos of yo | Program | `play` | `sensor` | `programName` | | Selected Temperature | `thermometer` | `sensor` | `tempSel` | -### Dish washer +### Air Purifier +#### Controls +| Name | Icon | Entity | Key | +| --- | --- | --- | --- | +| Aroma Time Off | `thermometer` | `number` | `settings.aromaTimeOff` | +| Aroma Time On | `thermometer` | `number` | `settings.aromaTimeOn` | +| Diffuser Level | | `select` | `settings.aromaStatus` | +| Light status | `lightbulb` | `number` | `settings.lightStatus` | +| Lock Status | | `switch` | `lockStatus` | +| Mode | `run` | `select` | `settings.machMode` | +| Pollen Level | | `number` | `settings.pollenLevel` | +| Touch Tone | | `switch` | `touchToneStatus` | +#### Sensors +| Name | Icon | Entity | Key | +| --- | --- | --- | --- | +| Air Quality | | `sensor` | `airQuality` | +| CO Level | | `sensor` | `coLevel` | +| Error | `math-log` | `sensor` | `errors` | +| Humidity | | `sensor` | `humidityIndoor` | +| Main Filter Status | | `sensor` | `mainFilterStatus` | +| On | `power-cycle` | `binary_sensor` | `attributes.parameters.onOffStatus` | +| Pre Filter Status | | `sensor` | `preFilterStatus` | +| Temperature | | `sensor` | `temp` | +| Total Work Time | | `sensor` | `totalWorkTime` | +| VOC | | `sensor` | `vocValueIndoor` | +| Wind Speed | | `sensor` | `windSpeed` | +| pm10 | | `sensor` | `pm10ValueIndoor` | +| pm2p5 | | `sensor` | `pm2p5ValueIndoor` | + +### Dish Washer #### Controls | Name | Icon | Entity | Key | | --- | --- | --- | --- | @@ -217,10 +247,6 @@ For every device exists a hidden button which can be used to log all infos of yo | Start Program | `hvac` | `button` | `startProgram` | | Stop Program | `hvac-off` | `button` | `stopProgram` | | Wind Speed | | `fan` | `settings.windSpeed` | -#### Configs -| Name | Icon | Entity | Key | -| --- | --- | --- | --- | -| Light status | `lightbulb` | `number` | `startProgram.lightStatus` | #### Sensors | Name | Icon | Entity | Key | | --- | --- | --- | --- | @@ -231,13 +257,14 @@ For every device exists a hidden button which can be used to log all infos of yo | Filter Cleaning Status | | `sensor` | `filterCleaningStatus` | | Last Work Time | `clock-start` | `sensor` | `lastWorkTime` | | Light Status | `lightbulb` | `sensor` | `lightStatus` | +| Light status | `lightbulb` | `number` | `startProgram.lightStatus` | | Mach Mode | | `sensor` | `machMode` | | On / Off Status | `lightbulb` | `sensor` | `onOffStatus` | | Quick Delay Time Status | | `sensor` | `quickDelayTimeStatus` | | RGB Light Color | `lightbulb` | `sensor` | `rgbLightColors` | | RGB Light Status | `lightbulb` | `sensor` | `rgbLightStatus` | -### Hob +### Induction Hob #### Controls | Name | Icon | Entity | Key | | --- | --- | --- | --- | @@ -321,7 +348,7 @@ For every device exists a hidden button which can be used to log all infos of yo | Temperature Freezer | `snowflake-thermometer` | `sensor` | `tempZ2` | | Temperature Fridge | `thermometer` | `sensor` | `tempZ1` | -### Tumble dryer +### Tumble Dryer #### Controls | Name | Icon | Entity | Key | | --- | --- | --- | --- | @@ -380,7 +407,7 @@ For every device exists a hidden button which can be used to log all infos of yo | Temperature | `thermometer` | `sensor` | `temp` | | Temperature 2 | `thermometer` | `sensor` | `tempZ2` | -### Washer dryer +### Washer Dryer #### Controls | Name | Icon | Entity | Key | | --- | --- | --- | --- | @@ -455,7 +482,7 @@ For every device exists a hidden button which can be used to log all infos of yo | Total Wash Cycle | `counter` | `sensor` | `totalWashCycle` | | Total Water | | `sensor` | `totalWaterUsed` | -### Washing machine +### Washing Machine #### Controls | Name | Icon | Entity | Key | | --- | --- | --- | --- | diff --git a/custom_components/hon/binary_sensor.py b/custom_components/hon/binary_sensor.py index c30e02d..2ff945f 100644 --- a/custom_components/hon/binary_sensor.py +++ b/custom_components/hon/binary_sensor.py @@ -242,6 +242,16 @@ BINARY_SENSORS: dict[str, tuple[HonBinarySensorEntityDescription, ...]] = { translation_key="holiday_mode", ), ), + "AP": ( + HonBinarySensorEntityDescription( + key="attributes.parameters.onOffStatus", + name="On", + device_class=BinarySensorDeviceClass.RUNNING, + on_value="1", + icon="mdi:power-cycle", + translation_key="on", + ), + ), } diff --git a/custom_components/hon/const.py b/custom_components/hon/const.py index 9290eaa..bf2f85e 100644 --- a/custom_components/hon/const.py +++ b/custom_components/hon/const.py @@ -188,3 +188,18 @@ AC_HUMAN_SENSE = { "2": "follow_touch", "3": "unknown", } + +AP_MACH_MODE = { + "0": "standby", + "1": "sleep", + "2": "auto", + "3": "allergens", + "4": "max", +} + +AP_DIFFUSER_LEVEL = { + "1": "soft", + "2": "mid", + "3": "h_biotics", + "4": "custom", +} diff --git a/custom_components/hon/number.py b/custom_components/hon/number.py index 43f3761..bec5c17 100644 --- a/custom_components/hon/number.py +++ b/custom_components/hon/number.py @@ -167,7 +167,29 @@ NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = { key="startProgram.lightStatus", name="Light status", icon="mdi:lightbulb", - entity_category=EntityCategory.CONFIG, + ), + ), + "AP": ( + HonNumberEntityDescription( + key="settings.aromaTimeOn", + name="Aroma Time On", + icon="mdi:thermometer", + native_unit_of_measurement=UnitOfTime.SECONDS, + ), + HonNumberEntityDescription( + key="settings.aromaTimeOff", + name="Aroma Time Off", + icon="mdi:thermometer", + native_unit_of_measurement=UnitOfTime.SECONDS, + ), + HonNumberEntityDescription( + key="settings.lightStatus", + name="Light status", + icon="mdi:lightbulb", + ), + HonNumberEntityDescription( + key="settings.pollenLevel", + name="Pollen Level", ), ), } @@ -206,7 +228,7 @@ class HonNumberEntity(HonEntity, NumberEntity): @property def native_value(self) -> float | None: - return self._device.get(self.entity_description.key) + return self._device.get(self.entity_description.key.split(".")[-1]) async def async_set_native_value(self, value: float) -> None: setting = self._device.settings[self.entity_description.key] @@ -223,7 +245,7 @@ class HonNumberEntity(HonEntity, NumberEntity): self._attr_native_max_value = setting.max self._attr_native_min_value = setting.min self._attr_native_step = setting.step - self._attr_native_value = setting.value + self._attr_native_value = self.native_value if update: self.async_write_ha_state() diff --git a/custom_components/hon/select.py b/custom_components/hon/select.py index 2bee890..046630c 100644 --- a/custom_components/hon/select.py +++ b/custom_components/hon/select.py @@ -133,6 +133,19 @@ SELECTS = { translation_key="ref_zones", ), ), + "AP": ( + HonSelectEntityDescription( + key="settings.aromaStatus", + name="Diffuser Level", + option_list=const.AP_DIFFUSER_LEVEL, + ), + HonSelectEntityDescription( + key="settings.machMode", + name="Mode", + icon="mdi:run", + option_list=const.AP_MACH_MODE, + ), + ), } SELECTS["WD"] = unique_entities(SELECTS["WM"], SELECTS["TD"]) diff --git a/custom_components/hon/sensor.py b/custom_components/hon/sensor.py index 0286811..7582db5 100644 --- a/custom_components/hon/sensor.py +++ b/custom_components/hon/sensor.py @@ -9,7 +9,12 @@ from homeassistant.components.sensor import ( SensorEntityDescription, ) from homeassistant.config_entries import ConfigEntry -from homeassistant.const import PERCENTAGE +from homeassistant.const import ( + PERCENTAGE, + CONCENTRATION_MICROGRAMS_PER_CUBIC_METER, + CONCENTRATION_PARTS_PER_BILLION, + CONCENTRATION_PARTS_PER_MILLION, +) from homeassistant.const import ( REVOLUTIONS_PER_MINUTE, UnitOfEnergy, @@ -637,6 +642,7 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = { name="Temperature", icon="mdi:thermometer", state_class=SensorStateClass.MEASUREMENT, + device_class=SensorDeviceClass.TEMPERATURE, native_unit_of_measurement=UnitOfTemperature.CELSIUS, translation_key="temperature", ), @@ -673,6 +679,7 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = { icon="mdi:thermometer", state_class=SensorStateClass.MEASUREMENT, native_unit_of_measurement=UnitOfTemperature.CELSIUS, + device_class=SensorDeviceClass.TEMPERATURE, translation_key="temperature", ), HonSensorEntityDescription( @@ -683,6 +690,76 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = { translation_key="programs_wc", ), ), + "AP": ( + HonSensorEntityDescription( + key="errors", name="Error", icon="mdi:math-log", translation_key="errors" + ), + HonSensorEntityDescription( + key="mainFilterStatus", + name="Main Filter Status", + native_unit_of_measurement=PERCENTAGE, + ), + HonSensorEntityDescription( + key="preFilterStatus", + name="Pre Filter Status", + native_unit_of_measurement=PERCENTAGE, + ), + HonSensorEntityDescription( + key="totalWorkTime", + name="Total Work Time", + native_unit_of_measurement=UnitOfTime.MINUTES, + device_class=SensorDeviceClass.DURATION, + ), + HonSensorEntityDescription( + key="coLevel", + name="CO Level", + state_class=SensorStateClass.MEASUREMENT, + device_class=SensorDeviceClass.CO, + native_unit_of_measurement=CONCENTRATION_PARTS_PER_MILLION, + ), + HonSensorEntityDescription( + key="pm10ValueIndoor", + name="pm10", + state_class=SensorStateClass.MEASUREMENT, + device_class=SensorDeviceClass.PM10, + native_unit_of_measurement=CONCENTRATION_MICROGRAMS_PER_CUBIC_METER, + ), + HonSensorEntityDescription( + key="pm2p5ValueIndoor", + name="pm2p5", + state_class=SensorStateClass.MEASUREMENT, + device_class=SensorDeviceClass.PM25, + native_unit_of_measurement=CONCENTRATION_MICROGRAMS_PER_CUBIC_METER, + ), + HonSensorEntityDescription( + key="vocValueIndoor", + name="VOC", + state_class=SensorStateClass.MEASUREMENT, + device_class=SensorDeviceClass.VOLATILE_ORGANIC_COMPOUNDS, + native_unit_of_measurement=CONCENTRATION_PARTS_PER_BILLION, + ), + HonSensorEntityDescription( + key="humidityIndoor", + name="Humidity", + state_class=SensorStateClass.MEASUREMENT, + device_class=SensorDeviceClass.HUMIDITY, + native_unit_of_measurement=PERCENTAGE, + translation_key="humidity", + ), + HonSensorEntityDescription( + key="temp", + name="Temperature", + state_class=SensorStateClass.MEASUREMENT, + device_class=SensorDeviceClass.TEMPERATURE, + native_unit_of_measurement=UnitOfTemperature.CELSIUS, + translation_key="temperature", + ), + HonSensorEntityDescription(key="windSpeed", name="Wind Speed"), + HonSensorEntityDescription( + key="airQuality", + name="Air Quality", + ), + ), } SENSORS["WD"] = unique_entities(SENSORS["WM"], SENSORS["TD"]) diff --git a/custom_components/hon/switch.py b/custom_components/hon/switch.py index 7351a08..fbd4b65 100644 --- a/custom_components/hon/switch.py +++ b/custom_components/hon/switch.py @@ -333,6 +333,16 @@ SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = { key="lightStatus", name="Light", icon="mdi:lightbulb" ), ), + "AP": ( + HonSwitchEntityDescription( + key="touchToneStatus", + name="Touch Tone", + ), + HonSwitchEntityDescription( + key="lockStatus", + name="Lock Status", + ), + ), } SWITCHES["WD"] = unique_entities(SWITCHES["WD"], SWITCHES["WM"]) diff --git a/info.md b/info.md index 1972063..26f76b2 100644 --- a/info.md +++ b/info.md @@ -10,11 +10,12 @@ Support for home appliances of [Haier's mobile app hOn](https://hon-smarthome.co - [Washer Dryer](https://github.com/Andre0512/hon#washer-dryer) - [Oven](https://github.com/Andre0512/hon#oven) - [Dish Washer](https://github.com/Andre0512/hon#dish-washer) -- [Air conditioner](https://github.com/Andre0512/hon#air-conditioner) +- [Air Conditioner](https://github.com/Andre0512/hon#air-conditioner) - [Fridge](https://github.com/Andre0512/hon#fridge) -- [Hob](https://github.com/Andre0512/hon#hob) [BETA] +- [Induction Hob](https://github.com/Andre0512/hon#induction-hob) [BETA] - [Hood](https://github.com/Andre0512/hon#hood) [BETA] - [Wine Cellar](https://github.com/Andre0512/hon#wine-cellar) [BETA] +- [Air Purifier](https://github.com/Andre0512/hon#air-purifier) [BETA] ## Configuration @@ -26,18 +27,18 @@ _If the integration is not in the list, you need to clear the browser cache._ ## Supported Models Support has been confirmed for these models, but many more will work. Please add already supported devices [with this form to complete the list](https://forms.gle/bTSD8qFotdZFytbf8). -| | **Haier** | **Hoover** | **Candy** | -|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------| -| **Washing Machine** | HW90-B14TEAM5
HW100-B14959U1 | H-WASH 500
H7W4 48MBC-S | CO4 107T1/2-07
RO44 1286DWMC4-07
HW 68AMC/1-80
HWPD 69AMBC/1-S | -| **Tumble Dryer** | HD80-A3959 | H-DRY 500
H9A3TCBEXS-S
HLE C10DCE-80
NDE H10A2TCE-80
NDE H9A2TSBEXS-S
NDPHY10A2TCBEXSS | BCTDH7A1TE
CSOE C10DE-80
ROE H9A3TCEX-S | -| **Washer Dryer** | HWD100-B14979 | HWPS4954DAMR-11 | RPW41066BWMR/1-S | -| **Oven** | HWO60SM2F3XH | HSOT3161WG | | -| **Dish Washer** | XIB 3B2SFS-80
XIB 6B2D3FB | HFB 6B2S3FX | | -| **Air conditioner** | AD105S2SM3FA
AS20HPL1HRA
AS25PBAHRA
AS25S2SF1FA-WH
AS25TADHRA-2
AS35S2SF2FA-3
AS35TADHRA-2
AS35TAMHRA-C | | | -| **Fridge** | HFW7720ENMB | | CCE4T620EWU | -| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI | -| **Hood** | HADG6DS46BWIFI | | | -| **Wine Cellar** | HWS247FDU1 | | | +| | **Haier** | **Hoover** | **Candy** | +|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------| +| **Washing Machine** | HW90-B14TEAM5
HW100-B14959U1 | H-WASH 500
H7W4 48MBC-S | CO4 107T1/2-07
CBWO49TWME-S
RO44 1286DWMC4-07
HW 68AMC/1-80
HWPD 69AMBC/1-S | +| **Tumble Dryer** | HD80-A3959 | H-DRY 500
H9A3TCBEXS-S
HLE C10DCE-80
NDE H10A2TCE-80
NDE H9A2TSBEXS-S
NDPHY10A2TCBEXSS | BCTDH7A1TE
CSOE C10DE-80
ROE H9A3TCEX-S | +| **Washer Dryer** | HWD100-B14979 | HWPS4954DAMR-11 | RPW41066BWMR/1-S | +| **Oven** | HWO60SM2F3XH | HSOT3161WG | | +| **Dish Washer** | XIB 3B2SFS-80
XIB 6B2D3FB | HFB 6B2S3FX | | +| **Air Conditioner** | AD105S2SM3FA
AS20HPL1HRA
AS25PBAHRA
AS25S2SF1FA-WH
AS25TADHRA-2
AS35S2SF2FA-3
AS35TADHRA-2
AS35TAMHRA-C | | | +| **Fridge** | HFW7720ENMB | | CCE4T620EWU | +| **Hob** | HA2MTSJ68MC | | CIS633SCTTWIFI | +| **Hood** | HADG6DS46BWIFI | | | +| **Wine Cellar** | HWS247FDU1 | | | ## Supported Languages Translation of internal names like programs are available for all languages which are official supported by the hOn app: diff --git a/scripts/sensor_docs.py b/scripts/sensor_docs.py index e009186..ddc32b8 100755 --- a/scripts/sensor_docs.py +++ b/scripts/sensor_docs.py @@ -22,21 +22,21 @@ from custom_components.hon.switch import ( ) APPLIANCES = { - "AC": "Air conditioner", - "AP": "Air purifier", - "AS": "Air scanner", - "DW": "Dish washer", + "AC": "Air Conditioner", + "AP": "Air Purifier", + "AS": "Air Scanner", + "DW": "Dish Washer", "HO": "Hood", - "IH": "Hob", + "IH": "Induction Hob", "MW": "Microwave", "OV": "Oven", "REF": "Fridge", - "RVC": "Robot vacuum cleaner", - "TD": "Tumble dryer", + "RVC": "Robot Vacuum Cleaner", + "TD": "Tumble Dryer", "WC": "Wine Cellar", - "WD": "Washer dryer", + "WD": "Washer Dryer", "WH": "Water Heater", - "WM": "Washing machine", + "WM": "Washing Machine", } ENTITY_CATEGORY_SORT = ["control", "config", "sensor"] From fbd1bdf5babb042d198b86ec1c5349284286fdbd Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Wed, 21 Jun 2023 19:52:32 +0200 Subject: [PATCH 7/8] Split program and mach mode of ac #75 --- custom_components/hon/climate.py | 47 +++++++++++++++++----- custom_components/hon/number.py | 2 + custom_components/hon/select.py | 6 ++- custom_components/hon/translations/cs.json | 26 +++++++++++- custom_components/hon/translations/de.json | 26 +++++++++++- custom_components/hon/translations/el.json | 26 +++++++++++- custom_components/hon/translations/en.json | 26 +++++++++++- custom_components/hon/translations/es.json | 26 +++++++++++- custom_components/hon/translations/fr.json | 26 +++++++++++- custom_components/hon/translations/he.json | 10 ++++- custom_components/hon/translations/hr.json | 26 +++++++++++- custom_components/hon/translations/it.json | 26 +++++++++++- custom_components/hon/translations/nl.json | 26 +++++++++++- custom_components/hon/translations/pl.json | 26 +++++++++++- custom_components/hon/translations/pt.json | 26 +++++++++++- custom_components/hon/translations/ro.json | 26 +++++++++++- custom_components/hon/translations/ru.json | 26 +++++++++++- custom_components/hon/translations/sk.json | 26 +++++++++++- custom_components/hon/translations/sl.json | 26 +++++++++++- custom_components/hon/translations/sr.json | 26 +++++++++++- custom_components/hon/translations/tr.json | 26 +++++++++++- custom_components/hon/translations/zh.json | 26 +++++++++++- scripts/translation_keys.py | 6 +++ 23 files changed, 508 insertions(+), 31 deletions(-) diff --git a/custom_components/hon/climate.py b/custom_components/hon/climate.py index c2bd3f2..31e8c24 100644 --- a/custom_components/hon/climate.py +++ b/custom_components/hon/climate.py @@ -22,7 +22,7 @@ from homeassistant.const import ( from homeassistant.core import callback from pyhon.appliance import HonAppliance -from .const import HON_HVAC_MODE, HON_FAN, HON_HVAC_PROGRAM, DOMAIN +from .const import HON_HVAC_MODE, HON_FAN, DOMAIN from .hon import HonEntity _LOGGER = logging.getLogger(__name__) @@ -115,13 +115,14 @@ class HonACClimateEntity(HonEntity, ClimateEntity): super().__init__(hass, entry, device, description) self._attr_temperature_unit = TEMP_CELSIUS - self._attr_target_temperature_step = device.settings["settings.tempSel"].step - self._attr_max_temp = device.settings["settings.tempSel"].max - self._attr_min_temp = device.settings["settings.tempSel"].min + self._set_temperature_bound() self._attr_hvac_modes = [HVACMode.OFF] for mode in device.settings["settings.machMode"].values: self._attr_hvac_modes.append(HON_HVAC_MODE[mode]) + self._attr_preset_modes = [] + for mode in device.settings["startProgram.program"].values: + self._attr_preset_modes.append(mode) self._attr_fan_modes = [FAN_OFF] for mode in device.settings["settings.windSpeed"].values: self._attr_fan_modes.append(HON_FAN[mode]) @@ -135,10 +136,18 @@ class HonACClimateEntity(HonEntity, ClimateEntity): ClimateEntityFeature.TARGET_TEMPERATURE | ClimateEntityFeature.FAN_MODE | ClimateEntityFeature.SWING_MODE + | ClimateEntityFeature.PRESET_MODE ) self._handle_coordinator_update(update=False) + def _set_temperature_bound(self) -> None: + self._attr_target_temperature_step = self._device.settings[ + "settings.tempSel" + ].step + self._attr_max_temp = self._device.settings["settings.tempSel"].max + self._attr_min_temp = self._device.settings["settings.tempSel"].min + @property def target_temperature(self) -> int | None: """Return the temperature we try to reach.""" @@ -166,13 +175,31 @@ class HonACClimateEntity(HonEntity, ClimateEntity): async def async_set_hvac_mode(self, hvac_mode): self._attr_hvac_mode = hvac_mode if hvac_mode == HVACMode.OFF: - command = "stopProgram" + await self._device.commands["stopProgram"].send() + self._device.sync_command("stopProgram", "settings") else: - mode = HON_HVAC_PROGRAM[hvac_mode] - self._device.settings["startProgram.program"].value = mode - command = "startProgram" - await self._device.commands[command].send() - self._device.sync_command(command, "settings") + self._device.settings["settings.onOffStatus"].value = "1" + setting = self._device.settings["settings.machMode"] + modes = {HON_HVAC_MODE[number]: number for number in setting.values} + setting.value = modes[hvac_mode] + await self._device.commands["settings"].send() + self.async_write_ha_state() + + @property + def preset_mode(self) -> str | None: + """Return the current Preset for this channel.""" + return None + + async def async_set_preset_mode(self, preset_mode: str) -> None: + """Set the new preset mode.""" + if program := self._device.settings.get(f"startProgram.program"): + program.value = preset_mode + self._device.sync_command("startProgram", "settings") + self._set_temperature_bound() + self._handle_coordinator_update(update=False) + await self.coordinator.async_refresh() + self._attr_preset_mode = preset_mode + await self._device.commands["startProgram"].send() self.async_write_ha_state() @property diff --git a/custom_components/hon/number.py b/custom_components/hon/number.py index bec5c17..5bbdb56 100644 --- a/custom_components/hon/number.py +++ b/custom_components/hon/number.py @@ -236,6 +236,8 @@ class HonNumberEntity(HonEntity, NumberEntity): setting.value = value command = self.entity_description.key.split(".")[0] await self._device.commands[command].send() + if command != "settings": + self._device.sync_command(command, "settings") await self.coordinator.async_refresh() @callback diff --git a/custom_components/hon/select.py b/custom_components/hon/select.py index 046630c..7d04f9a 100644 --- a/custom_components/hon/select.py +++ b/custom_components/hon/select.py @@ -201,8 +201,6 @@ class HonConfigSelectEntity(HonEntity, SelectEntity): async def async_select_option(self, option: str) -> None: setting = self._device.settings[self.entity_description.key] setting.value = self._option_to_number(option, setting.values) - command = self.entity_description.key.split(".")[0] - await self._device.commands[command].send() await self.coordinator.async_refresh() @callback @@ -224,6 +222,10 @@ class HonSelectEntity(HonConfigSelectEntity): async def async_select_option(self, option: str) -> None: setting = self._device.settings[self.entity_description.key] setting.value = self._option_to_number(option, setting.values) + command = self.entity_description.key.split(".")[0] + await self._device.commands[command].send() + if command != "settings": + self._device.sync_command(command, "settings") await self.coordinator.async_refresh() @property diff --git a/custom_components/hon/translations/cs.json b/custom_components/hon/translations/cs.json index 2d66d47..f801b0d 100644 --- a/custom_components/hon/translations/cs.json +++ b/custom_components/hon/translations/cs.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Klimatizační jednotka" + "name": "Klimatizační jednotka", + "state_attributes": { + "preset_mode": { + "name": "Programy", + "state": { + "iot_10_heating": "Funkce Vytápění 10 °C", + "iot_auto": "Auto", + "iot_cool": "Chlazení", + "iot_dry": "Odvlhčování", + "iot_fan": "Ventilátor", + "iot_heat": "Vytápění", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Automatické čištění", + "iot_self_clean": "Samočištění zamrazením", + "iot_self_clean_56": "Samočištění 56°C sterilizace ", + "iot_simple_start": "Spustit nyní", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + auto", + "iot_uv_and_cool": "UV + zchlazení", + "iot_uv_and_dry": "UV + odstranění vlhkosti", + "iot_uv_and_fan": "UV + ventilátor", + "iot_uv_and_heat": "UV + ohřev" + } + } + } }, "fridge": { "name": "Chladnička", diff --git a/custom_components/hon/translations/de.json b/custom_components/hon/translations/de.json index 7cf3cf3..d2df5ef 100644 --- a/custom_components/hon/translations/de.json +++ b/custom_components/hon/translations/de.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Klimaanlage" + "name": "Klimaanlage", + "state_attributes": { + "preset_mode": { + "name": "Programme", + "state": { + "iot_10_heating": "10°C Heizfunktion", + "iot_auto": "Auto", + "iot_cool": "Kühl", + "iot_dry": "Trocken", + "iot_fan": "Ventilator", + "iot_heat": "Heizen", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Selbst reinigen", + "iot_self_clean": "Self-Clean", + "iot_self_clean_56": "Steri-Clean 56°C", + "iot_simple_start": "Jetzt beginnen", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Auto", + "iot_uv_and_cool": "UV + Kalt", + "iot_uv_and_dry": "UV + Entfeuchter", + "iot_uv_and_fan": "UV + Gebläse", + "iot_uv_and_heat": "UV + Heizen" + } + } + } }, "fridge": { "name": "Kühlschrank", diff --git a/custom_components/hon/translations/el.json b/custom_components/hon/translations/el.json index 93d4665..8fe6ba1 100644 --- a/custom_components/hon/translations/el.json +++ b/custom_components/hon/translations/el.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Κλιματιστικό" + "name": "Κλιματιστικό", + "state_attributes": { + "preset_mode": { + "name": "Προγράμματα", + "state": { + "iot_10_heating": "10° C Λειτουργία θέρμανσης", + "iot_auto": "Αυτόματο", + "iot_cool": "Ψύξη", + "iot_dry": "Στέγνωμα", + "iot_fan": "Ανεμιστήρας", + "iot_heat": "Ζέστη", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Αυτοκαθαρισμός", + "iot_self_clean": "Αυτοκαθαρισμός", + "iot_self_clean_56": "Steri-Clean 56°C", + "iot_simple_start": "Εκκίνηση τώρα", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Auto", + "iot_uv_and_cool": "UV + Ψύξη", + "iot_uv_and_dry": "UV + Αφυγραντήρας", + "iot_uv_and_fan": "UV + Ανεμιστήρας", + "iot_uv_and_heat": "UV + Θέρμανση" + } + } + } }, "fridge": { "name": "Ψυγείο", diff --git a/custom_components/hon/translations/en.json b/custom_components/hon/translations/en.json index f14fa71..514c214 100644 --- a/custom_components/hon/translations/en.json +++ b/custom_components/hon/translations/en.json @@ -1868,7 +1868,31 @@ }, "climate": { "air_conditioner": { - "name": "Air conditioner" + "name": "Air conditioner", + "state_attributes": { + "preset_mode": { + "name": "Programs", + "state": { + "iot_10_heating": "10°C Heating function", + "iot_auto": "Auto", + "iot_cool": "Cool", + "iot_dry": "Dry", + "iot_fan": "Fan", + "iot_heat": "Heat", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Self-purify", + "iot_self_clean": "Self-clean", + "iot_self_clean_56": "Steri-Clean 56°C", + "iot_simple_start": "Start now", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Auto", + "iot_uv_and_cool": "UV + Cold", + "iot_uv_and_dry": "UV + Dehumidifier", + "iot_uv_and_fan": "UV + Fan", + "iot_uv_and_heat": "UV + Heat" + } + } + } }, "fridge": { "name": "Fridge", diff --git a/custom_components/hon/translations/es.json b/custom_components/hon/translations/es.json index 02dd717..cc3d0b6 100644 --- a/custom_components/hon/translations/es.json +++ b/custom_components/hon/translations/es.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Aire acondicionado" + "name": "Aire acondicionado", + "state_attributes": { + "preset_mode": { + "name": "Programas", + "state": { + "iot_10_heating": "Función de calentamiento de 10° C", + "iot_auto": "Automático", + "iot_cool": "Frío", + "iot_dry": "Deshumidificar", + "iot_fan": "Ventilador", + "iot_heat": "Calor", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Autopurificar", + "iot_self_clean": "Autolimpieza", + "iot_self_clean_56": "Limpieza desinfectante 56°", + "iot_simple_start": "Iniciar ahora", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Automático", + "iot_uv_and_cool": "UV + Frío", + "iot_uv_and_dry": "UV + Deshumidificador", + "iot_uv_and_fan": "UV + Ventilador", + "iot_uv_and_heat": "UV + Calor" + } + } + } }, "fridge": { "name": "Frigorífico", diff --git a/custom_components/hon/translations/fr.json b/custom_components/hon/translations/fr.json index fe78f66..2478178 100644 --- a/custom_components/hon/translations/fr.json +++ b/custom_components/hon/translations/fr.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Climatiseur" + "name": "Climatiseur", + "state_attributes": { + "preset_mode": { + "name": "Programmes", + "state": { + "iot_10_heating": "Fonction Chauffage 10 °C", + "iot_auto": "Automatique", + "iot_cool": "Frais", + "iot_dry": "Sec", + "iot_fan": "Ventilateur", + "iot_heat": "Chaleur", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Auto-purification", + "iot_self_clean": "Auto-nettoyage", + "iot_self_clean_56": "Steri-Clean 56°C", + "iot_simple_start": "Démarrez maintenant", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Auto", + "iot_uv_and_cool": "UV + Froid", + "iot_uv_and_dry": "UV + Déshumidificateur", + "iot_uv_and_fan": "UV + ventilateur", + "iot_uv_and_heat": "UV + Chaleur" + } + } + } }, "fridge": { "name": "Réfrigérateur", diff --git a/custom_components/hon/translations/he.json b/custom_components/hon/translations/he.json index 7a0ff87..a68d88c 100644 --- a/custom_components/hon/translations/he.json +++ b/custom_components/hon/translations/he.json @@ -964,7 +964,15 @@ }, "climate": { "air_conditioner": { - "name": "Air conditioner" + "name": "Air conditioner", + "state_attributes": { + "preset_mode": { + "name": "Programs", + "state": { + "iot_simple_start": "התחל עכשיו" + } + } + } }, "fridge": { "name": "Fridge", diff --git a/custom_components/hon/translations/hr.json b/custom_components/hon/translations/hr.json index 385085f..2c66312 100644 --- a/custom_components/hon/translations/hr.json +++ b/custom_components/hon/translations/hr.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Klimatizacijski uređaj" + "name": "Klimatizacijski uređaj", + "state_attributes": { + "preset_mode": { + "name": "Programi", + "state": { + "iot_10_heating": "Funkcija grijanja na 10 °C", + "iot_auto": "Automatski", + "iot_cool": "Hlađenje", + "iot_dry": "Sušenje", + "iot_fan": "Ventilator", + "iot_heat": "Zagrijavanje", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Sampročišćavanje", + "iot_self_clean": "Samočišćenje", + "iot_self_clean_56": "Sterilno čišćenje 56°C", + "iot_simple_start": "Pokreni sada", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + automatski", + "iot_uv_and_cool": "UV + hladno", + "iot_uv_and_dry": "UV + odvlaživač", + "iot_uv_and_fan": "UV + ventilator", + "iot_uv_and_heat": "UV + grijanje" + } + } + } }, "fridge": { "name": "Hladnjak", diff --git a/custom_components/hon/translations/it.json b/custom_components/hon/translations/it.json index dcad47c..fe02131 100644 --- a/custom_components/hon/translations/it.json +++ b/custom_components/hon/translations/it.json @@ -1844,7 +1844,31 @@ }, "climate": { "air_conditioner": { - "name": "Condizionatore" + "name": "Condizionatore", + "state_attributes": { + "preset_mode": { + "name": "Programmi", + "state": { + "iot_10_heating": "Funzione 10°C Heating ", + "iot_auto": "Auto", + "iot_cool": "Freddo", + "iot_dry": "Deumidificazione", + "iot_fan": "Ventilatore", + "iot_heat": "Caldo", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Self purify", + "iot_self_clean": "Self clean", + "iot_self_clean_56": "Steri-Clean 56°C", + "iot_simple_start": "Avvia ora", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Auto", + "iot_uv_and_cool": "UV + Freddo", + "iot_uv_and_dry": "UV + Deumidificatore", + "iot_uv_and_fan": "UV + Ventola", + "iot_uv_and_heat": "UV + Caldo" + } + } + } }, "fridge": { "name": "Frigorifero", diff --git a/custom_components/hon/translations/nl.json b/custom_components/hon/translations/nl.json index ba5c686..524522a 100644 --- a/custom_components/hon/translations/nl.json +++ b/custom_components/hon/translations/nl.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Airconditioner" + "name": "Airconditioner", + "state_attributes": { + "preset_mode": { + "name": "Programma's", + "state": { + "iot_10_heating": "10°C-verwarmingsfunctie", + "iot_auto": "Automatisch", + "iot_cool": "Koelen", + "iot_dry": "Drogen", + "iot_fan": "Ventilator", + "iot_heat": "Verwarming", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Zelfzuivering", + "iot_self_clean": "Zelfreiniging", + "iot_self_clean_56": "Sterilisatie reiniging 56°C", + "iot_simple_start": "Start nu", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Auto", + "iot_uv_and_cool": "UV + Koud", + "iot_uv_and_dry": "UV + Ontvochtiger", + "iot_uv_and_fan": "UV + Hetelucht", + "iot_uv_and_heat": "UV + Warmte" + } + } + } }, "fridge": { "name": "Koelkast", diff --git a/custom_components/hon/translations/pl.json b/custom_components/hon/translations/pl.json index a9a0096..9a9513b 100644 --- a/custom_components/hon/translations/pl.json +++ b/custom_components/hon/translations/pl.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Klimatyzator" + "name": "Klimatyzator", + "state_attributes": { + "preset_mode": { + "name": "Programy", + "state": { + "iot_10_heating": "Funkcja grzania 10°C", + "iot_auto": "Auto", + "iot_cool": "Chłodzenie", + "iot_dry": "Osuszanie", + "iot_fan": "Wentylator", + "iot_heat": "Grzanie", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Self Purify", + "iot_self_clean": "Self Clean", + "iot_self_clean_56": "Steri Clean 56°C", + "iot_simple_start": "Uruchom teraz", + "iot_uv": "Sterylizacja UVC", + "iot_uv_and_auto": "UV + automat", + "iot_uv_and_cool": "UV + chłodzenie", + "iot_uv_and_dry": "UV + osuszacz powietrza", + "iot_uv_and_fan": "UV + wentylator", + "iot_uv_and_heat": "UV + podgrzewanie" + } + } + } }, "fridge": { "name": "Lodówka", diff --git a/custom_components/hon/translations/pt.json b/custom_components/hon/translations/pt.json index 44ad0e8..1ad5fe1 100644 --- a/custom_components/hon/translations/pt.json +++ b/custom_components/hon/translations/pt.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Ar Condicionado" + "name": "Ar Condicionado", + "state_attributes": { + "preset_mode": { + "name": "Programas", + "state": { + "iot_10_heating": "Função de aquecimento de 10 °C", + "iot_auto": "Auto", + "iot_cool": "Frio", + "iot_dry": "Secar", + "iot_fan": "Ventilador", + "iot_heat": "Calor", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Autopurificação", + "iot_self_clean": "Autolimpeza", + "iot_self_clean_56": "Steri-Clean 56°C", + "iot_simple_start": "Iniciar agora", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Auto", + "iot_uv_and_cool": "UV + Frio", + "iot_uv_and_dry": "UV + Desumidificador", + "iot_uv_and_fan": "UV + Ventilação", + "iot_uv_and_heat": "UV + Calor" + } + } + } }, "fridge": { "name": "Frigorífico", diff --git a/custom_components/hon/translations/ro.json b/custom_components/hon/translations/ro.json index d750b22..820a2d7 100644 --- a/custom_components/hon/translations/ro.json +++ b/custom_components/hon/translations/ro.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Aer condiționat" + "name": "Aer condiționat", + "state_attributes": { + "preset_mode": { + "name": "Programe", + "state": { + "iot_10_heating": "Funcția de încălzire la 10 °C", + "iot_auto": "Automat", + "iot_cool": "Răcire", + "iot_dry": "Uscare", + "iot_fan": "Ventilare", + "iot_heat": "Încălzire", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Auto-purificare", + "iot_self_clean": "Autocurățare", + "iot_self_clean_56": "Curățare-sterilizare la 56°C", + "iot_simple_start": "Începeți acum", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + automat", + "iot_uv_and_cool": "UV + răcire", + "iot_uv_and_dry": "UV + dezumidificator", + "iot_uv_and_fan": "UV + ventilator", + "iot_uv_and_heat": "UV + încălzire" + } + } + } }, "fridge": { "name": "Frigider", diff --git a/custom_components/hon/translations/ru.json b/custom_components/hon/translations/ru.json index ffecc52..7c8eb0e 100644 --- a/custom_components/hon/translations/ru.json +++ b/custom_components/hon/translations/ru.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Кондиционер воздуха" + "name": "Кондиционер воздуха", + "state_attributes": { + "preset_mode": { + "name": "Программы", + "state": { + "iot_10_heating": "Функция нагрева до 10°C", + "iot_auto": "Авто", + "iot_cool": "Охлаждение", + "iot_dry": "Сушка", + "iot_fan": "Вентилятор", + "iot_heat": "Нагрев", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Самоочищение", + "iot_self_clean": "Самоочистка", + "iot_self_clean_56": "Steri-Clean 56°C", + "iot_simple_start": "Пуск сейчас", + "iot_uv": "Ультрафиолет", + "iot_uv_and_auto": "УФ + Авто", + "iot_uv_and_cool": "УФ + Охлаждение", + "iot_uv_and_dry": "УФ + Осушитель", + "iot_uv_and_fan": "УФ + Вентилятор", + "iot_uv_and_heat": "УФ + Нагрев" + } + } + } }, "fridge": { "name": "Холодильник", diff --git a/custom_components/hon/translations/sk.json b/custom_components/hon/translations/sk.json index 1d84748..1967d9f 100644 --- a/custom_components/hon/translations/sk.json +++ b/custom_components/hon/translations/sk.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Klimatizácia" + "name": "Klimatizácia", + "state_attributes": { + "preset_mode": { + "name": "Programy", + "state": { + "iot_10_heating": "Funkcia vykurovania na 10 °C", + "iot_auto": "Automatika", + "iot_cool": "Chladiť", + "iot_dry": "Sušiť", + "iot_fan": "Ventilátor", + "iot_heat": "Ohrev", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Samoprečisťovanie", + "iot_self_clean": "Samočistenie", + "iot_self_clean_56": "Sterilné čistenie 56°C", + "iot_simple_start": "Spustiť teraz", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Auto", + "iot_uv_and_cool": "UV + Studené", + "iot_uv_and_dry": "UV + Odvlhčovač", + "iot_uv_and_fan": "UV + Ventilátor", + "iot_uv_and_heat": "UV + Ohrev" + } + } + } }, "fridge": { "name": "Chladnička", diff --git a/custom_components/hon/translations/sl.json b/custom_components/hon/translations/sl.json index cedf8f8..5c22857 100644 --- a/custom_components/hon/translations/sl.json +++ b/custom_components/hon/translations/sl.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Klimatska naprava" + "name": "Klimatska naprava", + "state_attributes": { + "preset_mode": { + "name": "Programi", + "state": { + "iot_10_heating": "Funkcija ogrevanja pri 10 °C", + "iot_auto": "Samodejno", + "iot_cool": "Hlajenje", + "iot_dry": "Sušenje", + "iot_fan": "Ventilator", + "iot_heat": "Segrevanje", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Samoočiščevanje", + "iot_self_clean": "Samodejno čiščenje", + "iot_self_clean_56": "Sterilno čiščenje 56°C", + "iot_simple_start": "Zaženi zdaj", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + samodejno", + "iot_uv_and_cool": "UV + hlajenje", + "iot_uv_and_dry": "UV + razvlaževanje", + "iot_uv_and_fan": "UV + ventilator", + "iot_uv_and_heat": "UV + gretje" + } + } + } }, "fridge": { "name": "Hladilnik", diff --git a/custom_components/hon/translations/sr.json b/custom_components/hon/translations/sr.json index aaa157e..f86e6de 100644 --- a/custom_components/hon/translations/sr.json +++ b/custom_components/hon/translations/sr.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Klima uređaj" + "name": "Klima uređaj", + "state_attributes": { + "preset_mode": { + "name": "Programi", + "state": { + "iot_10_heating": "Funkcija grejanja – 10° C", + "iot_auto": "Automatski", + "iot_cool": "Hlađenje", + "iot_dry": "Sušenje", + "iot_fan": "Ventilator", + "iot_heat": "Toplota", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Samopročišćavanje", + "iot_self_clean": "Samočišćenje", + "iot_self_clean_56": "Sterilno čišćenje 56°C", + "iot_simple_start": "Pokrenuti sada", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + automatsko", + "iot_uv_and_cool": "UV+ hladno", + "iot_uv_and_dry": "UV + odvlaživač", + "iot_uv_and_fan": "UV + ventilator", + "iot_uv_and_heat": "UV + toplota" + } + } + } }, "fridge": { "name": "Frižider", diff --git a/custom_components/hon/translations/tr.json b/custom_components/hon/translations/tr.json index 562fd7f..c32c931 100644 --- a/custom_components/hon/translations/tr.json +++ b/custom_components/hon/translations/tr.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "Klima" + "name": "Klima", + "state_attributes": { + "preset_mode": { + "name": "Programlar", + "state": { + "iot_10_heating": "10°C Isıtma fonksiyonu", + "iot_auto": "Otomatik", + "iot_cool": "Soğuk", + "iot_dry": "Kuru", + "iot_fan": "Fan", + "iot_heat": "Isı", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "Kendi kendini arındırma", + "iot_self_clean": "Kendi kendini temizleme", + "iot_self_clean_56": "Steril Temizleme 56°C", + "iot_simple_start": "Şimdi başlat", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + Otomatik", + "iot_uv_and_cool": "UV + Soğuk", + "iot_uv_and_dry": "UV + Nem giderici", + "iot_uv_and_fan": "UV + Fan", + "iot_uv_and_heat": "UV + Isıtma" + } + } + } }, "fridge": { "name": "Buzdolabı", diff --git a/custom_components/hon/translations/zh.json b/custom_components/hon/translations/zh.json index 0c2111e..c6a628c 100644 --- a/custom_components/hon/translations/zh.json +++ b/custom_components/hon/translations/zh.json @@ -1839,7 +1839,31 @@ }, "climate": { "air_conditioner": { - "name": "空调" + "name": "空调", + "state_attributes": { + "preset_mode": { + "name": "程序", + "state": { + "iot_10_heating": "10°C 加热功能", + "iot_auto": "自动", + "iot_cool": "冷却", + "iot_dry": "烘干", + "iot_fan": "风扇", + "iot_heat": "加热", + "iot_nano_aqua": "Nano Aqua", + "iot_purify": "自净", + "iot_self_clean": "自洁", + "iot_self_clean_56": "无菌清洁 56°C", + "iot_simple_start": "立即启动", + "iot_uv": "UV", + "iot_uv_and_auto": "UV + 自动", + "iot_uv_and_cool": "UV + 制冷", + "iot_uv_and_dry": "UV + 减湿器", + "iot_uv_and_fan": "UV + 风扇", + "iot_uv_and_heat": "UV + 加热" + } + } + } }, "fridge": { "name": "冰箱", diff --git a/scripts/translation_keys.py b/scripts/translation_keys.py index 57b5364..3f45cb1 100644 --- a/scripts/translation_keys.py +++ b/scripts/translation_keys.py @@ -159,6 +159,12 @@ CLIMATE = { "state": "PROGRAMS.OV", } }, + "air_conditioner": { + "preset_mode": { + "name": "OV.TABS.PROGRAMS_TITLE", + "state": "PROGRAMS.AC", + } + }, "wine": { "preset_mode": { "name": "WC.NAME", From 2c3217ff95b94b06e90c1e25e1b72399ec9023d1 Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Wed, 21 Jun 2023 19:56:45 +0200 Subject: [PATCH 8/8] Bump version --- custom_components/hon/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/hon/manifest.json b/custom_components/hon/manifest.json index a0f5e63..2175a14 100644 --- a/custom_components/hon/manifest.json +++ b/custom_components/hon/manifest.json @@ -9,7 +9,7 @@ "iot_class": "cloud_polling", "issue_tracker": "https://github.com/Andre0512/hon/issues", "requirements": [ - "pyhOn==0.13.0" + "pyhOn==0.13.1" ], - "version": "0.9.0-beta.3" + "version": "0.9.0-beta.4" }