"""Demo platform that has two fake switches.""" from homeassistant.components.switch import SwitchEntity from homeassistant.const import DEVICE_DEFAULT_NAME from . import DOMAIN async def async_setup_platform(hass, config, async_add_entities, discovery_info=None): """Set up the demo switches.""" async_add_entities( [ DemoSwitch("swith1", "Decorative Lights", True, None, True), DemoSwitch( "swith2", "AC", False, "mdi:air-conditioner", False, device_class="outlet", ), ] ) async def async_setup_entry(hass, config_entry, async_add_entities): """Set up the Demo config entry.""" await async_setup_platform(hass, {}, async_add_entities) class DemoSwitch(SwitchEntity): """Representation of a demo switch.""" def __init__(self, unique_id, name, state, icon, assumed, device_class=None): """Initialize the Demo switch.""" self._unique_id = unique_id self._name = name or DEVICE_DEFAULT_NAME self._state = state self._icon = icon self._assumed = assumed self._device_class = device_class @property def device_info(self): """Return device info.""" return { "identifiers": { # Serial numbers are unique identifiers within a specific domain (DOMAIN, self.unique_id) }, "name": self.name, } @property def unique_id(self): """Return the unique id.""" return self._unique_id @property def should_poll(self): """No polling needed for a demo switch.""" return False @property def name(self): """Return the name of the device if any.""" return self._name @property def icon(self): """Return the icon to use for device if any.""" return self._icon @property def assumed_state(self): """Return if the state is based on assumptions.""" return self._assumed @property def current_power_w(self): """Return the current power usage in W.""" if self._state: return 100 @property def today_energy_kwh(self): """Return the today total energy usage in kWh.""" return 15 @property def is_on(self): """Return true if switch is on.""" return self._state @property def device_class(self): """Return device of entity.""" return self._device_class def turn_on(self, **kwargs): """Turn the switch on.""" self._state = True self.schedule_update_ha_state() def turn_off(self, **kwargs): """Turn the device off.""" self._state = False self.schedule_update_ha_state()