45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
|
from .midea_entity import MideaEntity
|
||
|
from .midea_devices import MIDEA_DEVICES
|
||
|
from homeassistant.helpers.entity import ToggleEntity
|
||
|
from homeassistant.const import (
|
||
|
Platform,
|
||
|
STATE_ON,
|
||
|
STATE_OFF,
|
||
|
CONF_DEVICE_ID,
|
||
|
CONF_SWITCHES
|
||
|
)
|
||
|
from .const import (
|
||
|
DOMAIN,
|
||
|
DEVICES,
|
||
|
)
|
||
|
|
||
|
|
||
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
||
|
device_id = config_entry.data.get(CONF_DEVICE_ID)
|
||
|
device = hass.data[DOMAIN][DEVICES].get(device_id)
|
||
|
extra_switches = config_entry.options.get(
|
||
|
CONF_SWITCHES, []
|
||
|
)
|
||
|
switches = []
|
||
|
for entity_key, config in MIDEA_DEVICES[device.device_type]["entities"].items():
|
||
|
if config["type"] == Platform.SWITCH and entity_key in extra_switches:
|
||
|
dev = MideaSwitch(device, entity_key)
|
||
|
switches.append(dev)
|
||
|
async_add_entities(switches)
|
||
|
|
||
|
|
||
|
class MideaSwitch(MideaEntity, ToggleEntity):
|
||
|
@property
|
||
|
def is_on(self) -> bool:
|
||
|
return self.state == STATE_ON
|
||
|
|
||
|
@property
|
||
|
def state(self):
|
||
|
return STATE_ON if self._device.get_attribute(self._entity_key) else STATE_OFF
|
||
|
|
||
|
def turn_on(self):
|
||
|
self._device.set_attribute(attr=self._entity_key, value=True)
|
||
|
|
||
|
def turn_off(self):
|
||
|
self._device.set_attribute(attr=self._entity_key, value=False)
|