Forgot to refactor demo.
This commit is contained in:
parent
ec88733b57
commit
6fc68e9c8a
1 changed files with 2 additions and 2 deletions
|
@ -38,12 +38,12 @@ class DemoGarageDoor(GarageDoorDevice):
|
||||||
""" True if device is closed. """
|
""" True if device is closed. """
|
||||||
return self._state == STATE_CLOSED
|
return self._state == STATE_CLOSED
|
||||||
|
|
||||||
def close(self, **kwargs):
|
def close_door(self, **kwargs):
|
||||||
""" Close the device. """
|
""" Close the device. """
|
||||||
self._state = STATE_CLOSED
|
self._state = STATE_CLOSED
|
||||||
self.update_ha_state()
|
self.update_ha_state()
|
||||||
|
|
||||||
def open(self, **kwargs):
|
def open_door(self, **kwargs):
|
||||||
""" Open the device. """
|
""" Open the device. """
|
||||||
self._state = STATE_OPEN
|
self._state = STATE_OPEN
|
||||||
self.update_ha_state()
|
self.update_ha_state()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue