mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 21:57:51 +00:00
Pilight switch: restore last state after restart (#8580)
* Pilight switch: restore last state after restart This uses the restore_state helper to set the last known state to pilight switches when the devices are initialized after a HA restart. Without this HA forget the state on every restart and needs to be told the sttae by retoggling the switches. This can cause unwanted effects as a switch toggling may emit an RF signal. * Make hound happy Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de> * Remove entity_id generation as requested in review. * Make hound happy again. * fix comments * fix lint
This commit is contained in:
parent
06a20d0d15
commit
fd6fd765b2
@ -4,6 +4,7 @@ Support for switching devices via Pilight to on and off.
|
|||||||
For more details about this platform, please refer to the documentation at
|
For more details about this platform, please refer to the documentation at
|
||||||
https://home-assistant.io/components/switch.pilight/
|
https://home-assistant.io/components/switch.pilight/
|
||||||
"""
|
"""
|
||||||
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
@ -12,7 +13,8 @@ import homeassistant.helpers.config_validation as cv
|
|||||||
import homeassistant.components.pilight as pilight
|
import homeassistant.components.pilight as pilight
|
||||||
from homeassistant.components.switch import (SwitchDevice, PLATFORM_SCHEMA)
|
from homeassistant.components.switch import (SwitchDevice, PLATFORM_SCHEMA)
|
||||||
from homeassistant.const import (CONF_NAME, CONF_ID, CONF_SWITCHES, CONF_STATE,
|
from homeassistant.const import (CONF_NAME, CONF_ID, CONF_SWITCHES, CONF_STATE,
|
||||||
CONF_PROTOCOL)
|
CONF_PROTOCOL, STATE_ON)
|
||||||
|
from homeassistant.helpers.restore_state import async_get_last_state
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -120,6 +122,13 @@ class PilightSwitch(SwitchDevice):
|
|||||||
if any(self._code_on_receive) or any(self._code_off_receive):
|
if any(self._code_on_receive) or any(self._code_off_receive):
|
||||||
hass.bus.listen(pilight.EVENT, self._handle_code)
|
hass.bus.listen(pilight.EVENT, self._handle_code)
|
||||||
|
|
||||||
|
@asyncio.coroutine
|
||||||
|
def async_added_to_hass(self):
|
||||||
|
"""Call when entity about to be added to hass."""
|
||||||
|
state = yield from async_get_last_state(self._hass, self.entity_id)
|
||||||
|
if state:
|
||||||
|
self._state = state.state == STATE_ON
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def name(self):
|
def name(self):
|
||||||
"""Get the name of the switch."""
|
"""Get the name of the switch."""
|
||||||
@ -130,6 +139,11 @@ class PilightSwitch(SwitchDevice):
|
|||||||
"""No polling needed, state set when correct code is received."""
|
"""No polling needed, state set when correct code is received."""
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
@property
|
||||||
|
def assumed_state(self):
|
||||||
|
"""Return True if unable to access real state of the entity."""
|
||||||
|
return True
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def is_on(self):
|
def is_on(self):
|
||||||
"""Return true if switch is on."""
|
"""Return true if switch is on."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user