| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- """
- Setup for different kinds of Tuya switch devices
- """
- import logging
- from homeassistant.components.switch import SwitchDeviceClass, SwitchEntity
- from .device import TuyaLocalDevice
- from .entity import TuyaLocalEntity
- from .helpers.config import async_tuya_setup_platform
- from .helpers.device_config import TuyaEntityConfig
- _LOGGER = logging.getLogger(__name__)
- async def async_setup_entry(hass, config_entry, async_add_entities):
- config = {**config_entry.data, **config_entry.options}
- await async_tuya_setup_platform(
- hass,
- async_add_entities,
- config,
- "switch",
- TuyaLocalSwitch,
- )
- class TuyaLocalSwitch(TuyaLocalEntity, SwitchEntity):
- """Representation of a Tuya Switch"""
- def __init__(self, device: TuyaLocalDevice, config: TuyaEntityConfig):
- """
- Initialize the switch.
- Args:
- device (TuyaLocalDevice): The device API instance.
- """
- super().__init__()
- dps_map = self._init_begin(device, config)
- self._switch_dps = dps_map.pop("switch")
- self._init_end(dps_map)
- @property
- def device_class(self):
- """Return the class of this device"""
- dclass = self._config.device_class
- try:
- return SwitchDeviceClass(dclass)
- except ValueError:
- if dclass:
- _LOGGER.warning(
- "%s/%s: Unrecognised switch device class of %s ignored",
- self._config._device.config,
- self.name or "switch",
- dclass,
- )
- @property
- def is_on(self):
- """Return whether the switch is on or not."""
- # if there is no switch, it is always on if available.
- if self._switch_dps is None:
- return self.available
- return self._switch_dps.get_value(self._device)
- async def async_turn_on(self, **kwargs):
- """Turn the switch on"""
- await self._switch_dps.async_set_value(self._device, True)
- async def async_turn_off(self, **kwargs):
- """Turn the switch off"""
- await self._switch_dps.async_set_value(self._device, False)
|