"""WiZ integration switch platform.""" from __future__ import annotations from typing import Any from pywizlight import PilotBuilder from pywizlight.bulblibrary import BulbClass from homeassistant.components.switch import SwitchEntity from homeassistant.config_entries import ConfigEntry from homeassistant.core import HomeAssistant from homeassistant.helpers.entity_platform import AddEntitiesCallback from .const import DOMAIN from .entity import WizToggleEntity from .models import WizData async def async_setup_entry( hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback, ) -> None: """Set up the WiZ switch platform.""" wiz_data: WizData = hass.data[DOMAIN][entry.entry_id] if wiz_data.bulb.bulbtype.bulb_type == BulbClass.SOCKET: async_add_entities([WizSocketEntity(wiz_data, entry.title)]) class WizSocketEntity(WizToggleEntity, SwitchEntity): """Representation of a WiZ socket.""" def __init__(self, wiz_data: WizData, name: str) -> None: """Initialize a WiZ socket.""" super().__init__(wiz_data, name) self._async_update_attrs() async def async_turn_on(self, **kwargs: Any) -> None: """Instruct the socket to turn on.""" await self._device.turn_on(PilotBuilder()) await self.coordinator.async_request_refresh()