"""Breeze switch of the Renson ventilation unit.""" import logging from typing import Any, override from renson_endura_delta.field_enum import CURRENT_LEVEL_FIELD, DataType from renson_endura_delta.renson import Level, RensonVentilation from homeassistant.components.switch import SwitchDeviceClass, SwitchEntity from homeassistant.core import HomeAssistant, callback from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback from .coordinator import RensonConfigEntry, RensonCoordinator from .entity import RensonEntity _LOGGER = logging.getLogger(__name__) class RensonBreezeSwitch(RensonEntity, SwitchEntity): """Provide the breeze switch.""" _attr_device_class = SwitchDeviceClass.SWITCH _attr_has_entity_name = True _attr_translation_key = "breeze" def __init__( self, api: RensonVentilation, coordinator: RensonCoordinator, ) -> None: """Initialize class.""" super().__init__("breeze", api, coordinator) self._attr_is_on = False @override async def async_turn_on(self, **kwargs: Any) -> None: """Turn on the switch.""" _LOGGER.debug("Enable Breeze") await self.hass.async_add_executor_job(self.api.set_manual_level, Level.BREEZE) await self.coordinator.async_request_refresh() @override async def async_turn_off(self, **kwargs: Any) -> None: """Turn off the switch.""" _LOGGER.debug("Disable Breeze") await self.hass.async_add_executor_job(self.api.set_manual_level, Level.OFF) await self.coordinator.async_request_refresh() @callback @override def _handle_coordinator_update(self) -> None: """Handle updated data from the coordinator.""" level = self.api.parse_value( self.api.get_field_value(self.coordinator.data, CURRENT_LEVEL_FIELD.name), DataType.LEVEL, ) self._attr_is_on = level == Level.BREEZE.value self.async_write_ha_state() async def async_setup_entry( hass: HomeAssistant, config_entry: RensonConfigEntry, async_add_entities: AddConfigEntryEntitiesCallback, ) -> None: """Call the Renson integration to setup.""" api = config_entry.runtime_data.api coordinator = config_entry.runtime_data.coordinator async_add_entities([RensonBreezeSwitch(api, coordinator)])