hass-core/homeassistant/components/wemo/binary_sensor.py

38 lines
1.1 KiB
Python
Raw Normal View History

"""Support for WeMo binary sensors."""
import asyncio
2016-03-04 16:35:46 +00:00
import logging
from homeassistant.components.binary_sensor import BinarySensorEntity
from homeassistant.helpers.dispatcher import async_dispatcher_connect
2016-03-04 16:35:46 +00:00
from .const import DOMAIN as WEMO_DOMAIN
from .entity import WemoEntity
2016-03-04 16:35:46 +00:00
_LOGGER = logging.getLogger(__name__)
async def async_setup_entry(hass, config_entry, async_add_entities):
"""Set up WeMo binary sensors."""
2016-03-04 16:35:46 +00:00
async def _discovered_wemo(coordinator):
"""Handle a discovered Wemo device."""
async_add_entities([WemoBinarySensor(coordinator)])
async_dispatcher_connect(hass, f"{WEMO_DOMAIN}.binary_sensor", _discovered_wemo)
2016-03-04 16:35:46 +00:00
await asyncio.gather(
*(
_discovered_wemo(coordinator)
for coordinator in hass.data[WEMO_DOMAIN]["pending"].pop("binary_sensor")
)
)
2016-03-04 16:35:46 +00:00
class WemoBinarySensor(WemoEntity, BinarySensorEntity):
"""Representation a WeMo binary sensor."""
2016-03-04 16:35:46 +00:00
@property
def is_on(self) -> bool:
"""Return true if the state is on. Standby is on."""
return self.wemo.get_state()