2019-12-03 01:49:25 +01:00
|
|
|
"""Support for the Mikrotik Router switches."""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from homeassistant.components.switch import SwitchDevice
|
|
|
|
from homeassistant.core import callback
|
|
|
|
from homeassistant.helpers.device_registry import CONNECTION_NETWORK_MAC
|
|
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
|
|
from homeassistant.helpers.restore_state import RestoreEntity
|
|
|
|
|
|
|
|
from homeassistant.const import (
|
|
|
|
CONF_NAME,
|
|
|
|
ATTR_ATTRIBUTION,
|
|
|
|
)
|
|
|
|
from .const import (
|
|
|
|
DOMAIN,
|
|
|
|
DATA_CLIENT,
|
|
|
|
ATTRIBUTION,
|
|
|
|
)
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
DEVICE_ATTRIBUTES_IFACE = [
|
2019-12-03 01:49:25 +01:00
|
|
|
"running",
|
|
|
|
"enabled",
|
|
|
|
"comment",
|
|
|
|
"client-ip-address",
|
|
|
|
"client-mac-address",
|
|
|
|
"port-mac-address",
|
|
|
|
"last-link-down-time",
|
|
|
|
"last-link-up-time",
|
|
|
|
"link-downs",
|
|
|
|
"actual-mtu",
|
|
|
|
"type",
|
|
|
|
"name",
|
|
|
|
"default-name",
|
|
|
|
]
|
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
DEVICE_ATTRIBUTES_NAT = [
|
|
|
|
"protocol",
|
|
|
|
"dst-port",
|
|
|
|
"in-interface",
|
|
|
|
"to-addresses",
|
|
|
|
"to-ports",
|
|
|
|
"comment",
|
|
|
|
]
|
|
|
|
|
2019-12-04 20:13:11 +01:00
|
|
|
DEVICE_ATTRIBUTES_SCRIPT = [
|
|
|
|
"last-started",
|
|
|
|
"run-count",
|
|
|
|
]
|
|
|
|
|
2019-12-07 21:18:27 +01:00
|
|
|
|
|
|
|
# ---------------------------
|
|
|
|
# format_attribute
|
|
|
|
# ---------------------------
|
2019-12-07 20:50:00 +01:00
|
|
|
def format_attribute(attr):
|
|
|
|
res = attr.replace("-", " ")
|
|
|
|
res = res.capitalize()
|
|
|
|
res = res.replace(" ip ", " IP ")
|
|
|
|
res = res.replace(" mac ", " MAC ")
|
|
|
|
res = res.replace(" mtu", " MTU")
|
|
|
|
return res
|
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
|
|
|
|
# ---------------------------
|
|
|
|
# async_setup_entry
|
|
|
|
# ---------------------------
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
|
|
"""Set up switches for Mikrotik Router component."""
|
2019-12-06 01:22:34 +01:00
|
|
|
inst = config_entry.data[CONF_NAME]
|
2019-12-03 01:49:25 +01:00
|
|
|
mikrotik_controller = hass.data[DOMAIN][DATA_CLIENT][config_entry.entry_id]
|
|
|
|
switches = {}
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
@callback
|
|
|
|
def update_controller():
|
|
|
|
"""Update the values of the controller."""
|
2019-12-06 01:22:34 +01:00
|
|
|
update_items(inst, mikrotik_controller, async_add_entities, switches)
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
mikrotik_controller.listeners.append(
|
|
|
|
async_dispatcher_connect(hass, mikrotik_controller.signal_update, update_controller)
|
|
|
|
)
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
update_controller()
|
|
|
|
|
|
|
|
|
|
|
|
# ---------------------------
|
|
|
|
# update_items
|
|
|
|
# ---------------------------
|
|
|
|
@callback
|
2019-12-06 01:22:34 +01:00
|
|
|
def update_items(inst, mikrotik_controller, async_add_entities, switches):
|
2019-12-03 01:49:25 +01:00
|
|
|
"""Update device switch state from the controller."""
|
|
|
|
new_switches = []
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-05 22:10:42 +01:00
|
|
|
# Add switches
|
2019-12-09 09:52:45 +01:00
|
|
|
for sid, sid_func in zip(
|
2019-12-12 13:02:11 +01:00
|
|
|
["interface", "nat", "script"],
|
|
|
|
[MikrotikControllerPortSwitch, MikrotikControllerNATSwitch, MikrotikControllerScriptSwitch]
|
2019-12-09 09:52:45 +01:00
|
|
|
):
|
2019-12-05 22:10:42 +01:00
|
|
|
for uid in mikrotik_controller.data[sid]:
|
2019-12-06 01:22:34 +01:00
|
|
|
item_id = "{}-{}-{}".format(inst, sid, mikrotik_controller.data[sid][uid]['name'])
|
2019-12-03 01:49:25 +01:00
|
|
|
if item_id in switches:
|
|
|
|
if switches[item_id].enabled:
|
|
|
|
switches[item_id].async_schedule_update_ha_state()
|
|
|
|
continue
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-09 09:52:45 +01:00
|
|
|
switches[item_id] = sid_func(inst, uid, mikrotik_controller)
|
2019-12-05 22:10:42 +01:00
|
|
|
new_switches.append(switches[item_id])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
if new_switches:
|
|
|
|
async_add_entities(new_switches)
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
|
|
|
|
# ---------------------------
|
2019-12-03 18:30:45 +01:00
|
|
|
# MikrotikControllerSwitch
|
2019-12-03 01:49:25 +01:00
|
|
|
# ---------------------------
|
2019-12-03 18:30:45 +01:00
|
|
|
class MikrotikControllerSwitch(SwitchDevice, RestoreEntity):
|
2019-12-06 01:22:34 +01:00
|
|
|
"""Representation of a switch."""
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-06 01:22:34 +01:00
|
|
|
def __init__(self, inst, uid, mikrotik_controller):
|
2019-12-03 18:30:45 +01:00
|
|
|
"""Set up switch."""
|
2019-12-06 01:22:34 +01:00
|
|
|
self._inst = inst
|
2019-12-03 01:49:25 +01:00
|
|
|
self._uid = uid
|
2019-12-06 01:22:34 +01:00
|
|
|
self._ctrl = mikrotik_controller
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
async def async_added_to_hass(self):
|
|
|
|
"""Switch entity created."""
|
2019-12-06 01:22:34 +01:00
|
|
|
_LOGGER.debug("New switch %s (%s)", self._inst, self._uid)
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
async def async_update(self):
|
|
|
|
"""Synchronize state with controller."""
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
@property
|
|
|
|
def available(self) -> bool:
|
|
|
|
"""Return if controller is available."""
|
2019-12-06 01:22:34 +01:00
|
|
|
return self._ctrl.connected()
|
2019-12-03 18:30:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
# ---------------------------
|
|
|
|
# MikrotikControllerPortSwitch
|
|
|
|
# ---------------------------
|
|
|
|
class MikrotikControllerPortSwitch(MikrotikControllerSwitch):
|
|
|
|
"""Representation of a network port switch."""
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-06 01:22:34 +01:00
|
|
|
def __init__(self, inst, uid, mikrotik_controller):
|
2019-12-03 18:30:45 +01:00
|
|
|
"""Set up tracked port."""
|
2019-12-06 01:22:34 +01:00
|
|
|
super().__init__(inst, uid, mikrotik_controller)
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-06 01:22:34 +01:00
|
|
|
self._data = mikrotik_controller.data['interface'][self._uid]
|
2019-12-03 01:49:25 +01:00
|
|
|
self._attrs = {
|
|
|
|
ATTR_ATTRIBUTION: ATTRIBUTION,
|
|
|
|
}
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
async def async_added_to_hass(self):
|
|
|
|
"""Port entity created."""
|
2019-12-10 22:29:35 +01:00
|
|
|
_LOGGER.debug("New port switch %s (%s %s)", self._inst, self._data['default-name'], self._data['port-mac-address'])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
@property
|
|
|
|
def name(self) -> str:
|
|
|
|
"""Return the name of the port."""
|
2019-12-06 01:22:34 +01:00
|
|
|
return "{} port {}".format(self._inst, self._data['default-name'])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
@property
|
|
|
|
def unique_id(self) -> str:
|
|
|
|
"""Return a unique identifier for this port."""
|
2019-12-06 01:22:34 +01:00
|
|
|
return "{}-enable_switch-{}".format(self._inst.lower(), self._data['port-mac-address'])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
@property
|
|
|
|
def icon(self):
|
|
|
|
"""Return the icon."""
|
2019-12-06 01:22:34 +01:00
|
|
|
if self._data['running']:
|
2019-12-03 01:49:25 +01:00
|
|
|
icon = 'mdi:lan-connect'
|
|
|
|
else:
|
|
|
|
icon = 'mdi:lan-pending'
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-06 01:22:34 +01:00
|
|
|
if not self._data['enabled']:
|
2019-12-03 01:49:25 +01:00
|
|
|
icon = 'mdi:lan-disconnect'
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
return icon
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
@property
|
|
|
|
def device_info(self):
|
|
|
|
"""Return a port description for device registry."""
|
|
|
|
info = {
|
2019-12-06 01:22:34 +01:00
|
|
|
"connections": {(CONNECTION_NETWORK_MAC, self._data['port-mac-address'])},
|
|
|
|
"manufacturer": self._ctrl.data['resource']['platform'],
|
|
|
|
"model": self._ctrl.data['resource']['board-name'],
|
|
|
|
"name": self._data['default-name'],
|
2019-12-03 01:49:25 +01:00
|
|
|
}
|
|
|
|
return info
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the port state attributes."""
|
|
|
|
attributes = self._attrs
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
for variable in DEVICE_ATTRIBUTES_IFACE:
|
2019-12-06 01:22:34 +01:00
|
|
|
if variable in self._data:
|
2019-12-07 20:50:00 +01:00
|
|
|
attributes[format_attribute(variable)] = self._data[variable]
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 01:49:25 +01:00
|
|
|
return attributes
|
|
|
|
|
|
|
|
async def async_turn_on(self):
|
|
|
|
"""Turn on the switch."""
|
|
|
|
path = '/interface'
|
|
|
|
param = 'default-name'
|
2019-12-06 01:22:34 +01:00
|
|
|
value = self._data[param]
|
2019-12-03 01:49:25 +01:00
|
|
|
mod_param = 'disabled'
|
|
|
|
mod_value = False
|
2019-12-06 01:22:34 +01:00
|
|
|
self._ctrl.set_value(path, param, value, mod_param, mod_value)
|
|
|
|
await self._ctrl.force_update()
|
2019-12-03 01:49:25 +01:00
|
|
|
|
|
|
|
async def async_turn_off(self):
|
|
|
|
"""Turn on the switch."""
|
|
|
|
path = '/interface'
|
|
|
|
param = 'default-name'
|
2019-12-06 01:22:34 +01:00
|
|
|
value = self._data[param]
|
2019-12-03 01:49:25 +01:00
|
|
|
mod_param = 'disabled'
|
|
|
|
mod_value = True
|
2019-12-06 01:22:34 +01:00
|
|
|
self._ctrl.set_value(path, param, value, mod_param, mod_value)
|
|
|
|
await self._ctrl.async_update()
|
2019-12-03 01:49:25 +01:00
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self):
|
|
|
|
"""Return true if device is on."""
|
2019-12-06 01:22:34 +01:00
|
|
|
return self._data['enabled']
|
2019-12-03 18:30:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
# ---------------------------
|
|
|
|
# MikrotikControllerNATSwitch
|
|
|
|
# ---------------------------
|
|
|
|
class MikrotikControllerNATSwitch(MikrotikControllerSwitch):
|
|
|
|
"""Representation of a NAT switch."""
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-06 01:22:34 +01:00
|
|
|
def __init__(self, inst, uid, mikrotik_controller):
|
2019-12-03 18:30:45 +01:00
|
|
|
"""Set up NAT switch."""
|
2019-12-06 01:22:34 +01:00
|
|
|
super().__init__(inst, uid, mikrotik_controller)
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-06 01:22:34 +01:00
|
|
|
self._data = mikrotik_controller.data['nat'][self._uid]
|
2019-12-03 18:30:45 +01:00
|
|
|
self._attrs = {
|
|
|
|
ATTR_ATTRIBUTION: ATTRIBUTION,
|
|
|
|
}
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
async def async_added_to_hass(self):
|
|
|
|
"""NAT switch entity created."""
|
2019-12-06 01:22:34 +01:00
|
|
|
_LOGGER.debug("New port switch %s (%s)", self._inst, self._data['name'])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
@property
|
|
|
|
def name(self) -> str:
|
|
|
|
"""Return the name of the NAT switch."""
|
2019-12-06 01:22:34 +01:00
|
|
|
return "{} NAT {}".format(self._inst, self._data['name'])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
@property
|
|
|
|
def unique_id(self) -> str:
|
|
|
|
"""Return a unique identifier for this NAT switch."""
|
2019-12-06 01:22:34 +01:00
|
|
|
return "{}-nat_switch-{}".format(self._inst.lower(), self._data['name'])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
@property
|
|
|
|
def icon(self):
|
|
|
|
"""Return the icon."""
|
2019-12-06 01:22:34 +01:00
|
|
|
if not self._data['enabled']:
|
2019-12-03 18:30:45 +01:00
|
|
|
icon = 'mdi:network-off-outline'
|
|
|
|
else:
|
|
|
|
icon = 'mdi:network-outline'
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
return icon
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
@property
|
|
|
|
def device_info(self):
|
|
|
|
"""Return a NAT switch description for device registry."""
|
|
|
|
info = {
|
2019-12-06 01:22:34 +01:00
|
|
|
"identifiers": {(DOMAIN, "serial-number", self._ctrl.data['routerboard']['serial-number'], "switch", "NAT")},
|
|
|
|
"manufacturer": self._ctrl.data['resource']['platform'],
|
|
|
|
"model": self._ctrl.data['resource']['board-name'],
|
2019-12-03 18:30:45 +01:00
|
|
|
"name": "NAT",
|
|
|
|
}
|
|
|
|
return info
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the NAT switch state attributes."""
|
|
|
|
attributes = self._attrs
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
for variable in DEVICE_ATTRIBUTES_NAT:
|
2019-12-06 01:22:34 +01:00
|
|
|
if variable in self._data:
|
2019-12-07 20:50:00 +01:00
|
|
|
attributes[format_attribute(variable)] = self._data[variable]
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
return attributes
|
|
|
|
|
|
|
|
async def async_turn_on(self):
|
|
|
|
"""Turn on the switch."""
|
|
|
|
path = '/ip/firewall/nat'
|
|
|
|
param = '.id'
|
2019-12-07 21:18:27 +01:00
|
|
|
value = None
|
|
|
|
for uid in self._ctrl.data['nat']:
|
|
|
|
if self._ctrl.data['nat'][uid]['name'] == "{}:{}".format(self._data['protocol'], self._data['dst-port']):
|
|
|
|
value = self._ctrl.data['nat'][uid]['.id']
|
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
mod_param = 'disabled'
|
|
|
|
mod_value = False
|
2019-12-06 01:22:34 +01:00
|
|
|
self._ctrl.set_value(path, param, value, mod_param, mod_value)
|
|
|
|
await self._ctrl.force_update()
|
2019-12-03 18:30:45 +01:00
|
|
|
|
|
|
|
async def async_turn_off(self):
|
|
|
|
"""Turn on the switch."""
|
|
|
|
path = '/ip/firewall/nat'
|
|
|
|
param = '.id'
|
2019-12-07 21:18:27 +01:00
|
|
|
value = None
|
|
|
|
for uid in self._ctrl.data['nat']:
|
|
|
|
if self._ctrl.data['nat'][uid]['name'] == "{}:{}".format(self._data['protocol'], self._data['dst-port']):
|
|
|
|
value = self._ctrl.data['nat'][uid]['.id']
|
|
|
|
|
2019-12-03 18:30:45 +01:00
|
|
|
mod_param = 'disabled'
|
|
|
|
mod_value = True
|
2019-12-06 01:22:34 +01:00
|
|
|
self._ctrl.set_value(path, param, value, mod_param, mod_value)
|
|
|
|
await self._ctrl.async_update()
|
2019-12-03 18:30:45 +01:00
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self):
|
|
|
|
"""Return true if device is on."""
|
2019-12-06 01:22:34 +01:00
|
|
|
return self._data['enabled']
|
2019-12-04 20:13:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
# ---------------------------
|
|
|
|
# MikrotikControllerScriptSwitch
|
|
|
|
# ---------------------------
|
|
|
|
class MikrotikControllerScriptSwitch(MikrotikControllerSwitch):
|
|
|
|
"""Representation of a script switch."""
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-06 01:22:34 +01:00
|
|
|
def __init__(self, inst, uid, mikrotik_controller):
|
2019-12-04 20:13:11 +01:00
|
|
|
"""Set up script switch."""
|
2019-12-06 01:22:34 +01:00
|
|
|
super().__init__(inst, uid, mikrotik_controller)
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-06 01:22:34 +01:00
|
|
|
self._data = mikrotik_controller.data['script'][self._uid]
|
2019-12-04 20:13:11 +01:00
|
|
|
self._attrs = {
|
|
|
|
ATTR_ATTRIBUTION: ATTRIBUTION,
|
|
|
|
}
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-04 20:13:11 +01:00
|
|
|
async def async_added_to_hass(self):
|
|
|
|
"""Script switch entity created."""
|
2019-12-06 01:22:34 +01:00
|
|
|
_LOGGER.debug("New script switch %s (%s)", self._inst, self._data['name'])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-04 20:13:11 +01:00
|
|
|
@property
|
|
|
|
def name(self) -> str:
|
|
|
|
"""Return the name of the script switch."""
|
2019-12-06 01:22:34 +01:00
|
|
|
return "{} script {}".format(self._inst, self._data['name'])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-04 20:13:11 +01:00
|
|
|
@property
|
|
|
|
def unique_id(self) -> str:
|
|
|
|
"""Return a unique identifier for this script switch."""
|
2019-12-06 01:22:34 +01:00
|
|
|
return "{}-script_switch-{}".format(self._inst.lower(), self._data['name'])
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-04 20:13:11 +01:00
|
|
|
@property
|
|
|
|
def icon(self):
|
|
|
|
"""Return the icon."""
|
|
|
|
return 'mdi:script-text-outline'
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-04 20:13:11 +01:00
|
|
|
@property
|
|
|
|
def device_info(self):
|
|
|
|
"""Return a script switch description for device registry."""
|
|
|
|
info = {
|
2019-12-06 01:22:34 +01:00
|
|
|
"identifiers": {(DOMAIN, "serial-number", self._ctrl.data['routerboard']['serial-number'], "switch", "Scripts")},
|
|
|
|
"manufacturer": self._ctrl.data['resource']['platform'],
|
|
|
|
"model": self._ctrl.data['resource']['board-name'],
|
2019-12-04 20:13:11 +01:00
|
|
|
"name": "Scripts",
|
|
|
|
}
|
|
|
|
return info
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-04 20:13:11 +01:00
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the script switch state attributes."""
|
|
|
|
attributes = self._attrs
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-04 20:13:11 +01:00
|
|
|
for variable in DEVICE_ATTRIBUTES_SCRIPT:
|
2019-12-06 01:22:34 +01:00
|
|
|
if variable in self._data:
|
2019-12-07 20:50:00 +01:00
|
|
|
attributes[format_attribute(variable)] = self._data[variable]
|
2019-12-05 20:45:04 +01:00
|
|
|
|
2019-12-04 20:13:11 +01:00
|
|
|
return attributes
|
|
|
|
|
|
|
|
async def async_turn_on(self):
|
|
|
|
"""Turn on the switch."""
|
2019-12-06 01:22:34 +01:00
|
|
|
self._ctrl.run_script(self._data['name'])
|
|
|
|
await self._ctrl.force_update()
|
2019-12-04 20:13:11 +01:00
|
|
|
|
|
|
|
async def async_turn_off(self):
|
|
|
|
"""Turn off the switch."""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self):
|
|
|
|
"""Return true if device is on."""
|
|
|
|
return False
|