"""Nice G.O. light.""" import logging from typing import TYPE_CHECKING, Any from homeassistant.components.light import ColorMode, LightEntity from homeassistant.const import Platform from homeassistant.core import HomeAssistant from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback from .const import ( KNOWN_UNSUPPORTED_DEVICE_TYPES, SUPPORTED_DEVICE_TYPES, UNSUPPORTED_DEVICE_WARNING, ) from .coordinator import NiceGOConfigEntry from .entity import NiceGOEntity from .util import retry _LOGGER = logging.getLogger(__name__) async def async_setup_entry( hass: HomeAssistant, config_entry: NiceGOConfigEntry, async_add_entities: AddConfigEntryEntitiesCallback, ) -> None: """Set up Nice G.O. light.""" coordinator = config_entry.runtime_data entities = [] for device_id, device_data in coordinator.data.items(): if device_data.type in SUPPORTED_DEVICE_TYPES[Platform.LIGHT]: entities.append(NiceGOLightEntity(coordinator, device_id, device_data.name)) elif device_data.type not in KNOWN_UNSUPPORTED_DEVICE_TYPES[Platform.LIGHT]: _LOGGER.warning( UNSUPPORTED_DEVICE_WARNING, device_data.name, device_data.type, device_data.type, ) async_add_entities(entities) class NiceGOLightEntity(NiceGOEntity, LightEntity): """Light for Nice G.O. devices.""" _attr_color_mode = ColorMode.ONOFF _attr_supported_color_modes = {ColorMode.ONOFF} _attr_translation_key = "light" @property def is_on(self) -> bool: """Return if the light is on or not.""" if TYPE_CHECKING: assert self.data.light_status is not None return self.data.light_status @retry("light_on_error") async def async_turn_on(self, **kwargs: Any) -> None: """Turn on the light.""" await self.coordinator.api.light_on(self._device_id) @retry("light_off_error") async def async_turn_off(self, **kwargs: Any) -> None: """Turn off the light.""" await self.coordinator.api.light_off(self._device_id)