Add assumed_state for rfxtrx switch and light.

This commit is contained in:
John Arild Berentsen 2016-02-15 18:59:11 +01:00
parent bca3207e0c
commit f429a6c4ff
2 changed files with 11 additions and 0 deletions

View File

@ -152,6 +152,12 @@ class RfxtrxLight(Light):
""" Brightness of this light between 0..255. """
return self._brightness
@property
def assumed_state(self):
"""Return True if unable to access real state of entity."""
return True
def turn_on(self, **kwargs):
""" Turn the light on. """
brightness = kwargs.get(ATTR_BRIGHTNESS)

View File

@ -132,6 +132,11 @@ class RfxtrxSwitch(SwitchDevice):
""" True if light is on. """
return self._state
@property
def assumed_state(self):
"""Return True if unable to access real state of entity."""
return True
def turn_on(self, **kwargs):
""" Turn the device on. """
if self._event: