52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
"""
|
|
Demo garage door platform that has two fake doors.
|
|
|
|
For more details about this platform, please refer to the documentation
|
|
https://home-assistant.io/components/demo/
|
|
"""
|
|
from homeassistant.components.garage_door import GarageDoorDevice
|
|
from homeassistant.const import STATE_CLOSED, STATE_OPEN
|
|
|
|
|
|
# pylint: disable=unused-argument
|
|
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
|
"""Setup demo garage door platform."""
|
|
add_devices_callback([
|
|
DemoGarageDoor('Left Garage Door', STATE_CLOSED),
|
|
DemoGarageDoor('Right Garage Door', STATE_OPEN)
|
|
])
|
|
|
|
|
|
class DemoGarageDoor(GarageDoorDevice):
|
|
"""Provides a demo garage door."""
|
|
|
|
def __init__(self, name, state):
|
|
"""Initialize the garage door."""
|
|
self._name = name
|
|
self._state = state
|
|
|
|
@property
|
|
def should_poll(self):
|
|
"""No polling needed for a demo garage door."""
|
|
return False
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the device if any."""
|
|
return self._name
|
|
|
|
@property
|
|
def is_closed(self):
|
|
"""Return true if garage door is closed."""
|
|
return self._state == STATE_CLOSED
|
|
|
|
def close_door(self, **kwargs):
|
|
"""Close the garage door."""
|
|
self._state = STATE_CLOSED
|
|
self.update_ha_state()
|
|
|
|
def open_door(self, **kwargs):
|
|
"""Open the garage door."""
|
|
self._state = STATE_OPEN
|
|
self.update_ha_state()
|