add selected engine state parameters

This commit is contained in:
2024-02-27 17:10:14 +01:00
parent d25ed3810f
commit 2308b2a154
5 changed files with 115 additions and 6 deletions
+66 -1
View File
@@ -20,14 +20,21 @@ from .const import (
GLOBAL_MODE_TRANSLATION,
EFF_MODES,
EFF_TRANSLATION,
ENGINE_FLOW_MODES,
ENGINE_FLOW_TRANSLATION,
)
from .coordinator import KoolnovaCoordinator
from .koolnova.device import Koolnova
from .koolnova.device import (
Koolnova,
Engine,
)
from .koolnova.const import (
GlobalMode,
Efficiency,
FlowEngine,
)
_LOGGER = logging.getLogger(__name__)
@@ -45,6 +52,9 @@ async def async_setup_entry(hass: HomeAssistant,
GlobalModeSelect(coordinator, device),
EfficiencySelect(coordinator, device),
]
for engine in device.engines:
entities.append(EngineStateSelect(coordinator, device, engine))
async_add_entities(entities)
class GlobalModeSelect(CoordinatorEntity, SelectEntity):
@@ -140,4 +150,59 @@ class EfficiencySelect(CoordinatorEntity, SelectEntity):
self.__select_option(
EFF_TRANSLATION[int(self.coordinator.data['eff'])]
)
self.async_write_ha_state()
class EngineStateSelect(CoordinatorEntity, SelectEntity):
"""Select component to set flow engine """
_attr_entity_category: EntityCategory = EntityCategory.CONFIG
def __init__(self,
coordinator: KoolnovaCoordinator, # pylint: disable=unused-argument
device: Koolnova, # pylint: disable=unused-argument,
engine: Engine, # pylint: disable=unused-argument
) -> None:
super().__init__(coordinator)
self._attr_options = ENGINE_FLOW_MODES
self._device = device
self._engine = engine
self._attr_name = f"{device.name} Engine AC{engine.engine_id} State"
self._attr_device_info = device.device_info
self._attr_icon = "mdi:turbine"
self._attr_unique_id = f"{DOMAIN}-Engine-AC{engine.engine_id}-State-select"
self.__select_option(
ENGINE_FLOW_TRANSLATION[int(self._engine.state)]
)
def __select_option(self,
option: str,
) -> None:
""" Change the selected option. """
self._attr_current_option = option
async def async_select_option(self,
option: str,
) -> None:
""" Change the selected option. """
_LOGGER.debug("[ENGINE FLOW] async_select_option: {}".format(option))
opt = 0
for k,v in ENGINE_FLOW_TRANSLATION.items():
if v == option:
opt = k
break
await self._device.async_set_engine_state(FlowEngine(opt), self._engine.engine_id)
self.__select_option(option)
await self.coordinator.async_request_refresh()
@callback
def _handle_coordinator_update(self) -> None:
""" Handle updated data from the coordinator
Retrieve latest state of global efficiency """
for _cur_engine in self.coordinator.data['engines']:
if self._engine.engine_id == _cur_engine.engine_id:
_LOGGER.debug("[UPDATE] [ENGINE AC{}] Order temp: {}".format(_cur_engine.engine_id, _cur_engine.state))
self.__select_option(
ENGINE_FLOW_TRANSLATION[int(_cur_engine.state)]
)
break
self.async_write_ha_state()