66 lines
1.9 KiB
Python
66 lines
1.9 KiB
Python
"""
|
|
Support for IP Webcam binary sensors.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/binary_sensor.android_ip_webcam/
|
|
"""
|
|
import asyncio
|
|
|
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
|
from homeassistant.components.android_ip_webcam import (
|
|
KEY_MAP,
|
|
DATA_IP_WEBCAM,
|
|
AndroidIPCamEntity,
|
|
CONF_HOST,
|
|
CONF_NAME,
|
|
)
|
|
|
|
DEPENDENCIES = ["android_ip_webcam"]
|
|
|
|
|
|
@asyncio.coroutine
|
|
def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
|
|
"""Set up the IP Webcam binary sensors."""
|
|
if discovery_info is None:
|
|
return
|
|
|
|
host = discovery_info[CONF_HOST]
|
|
name = discovery_info[CONF_NAME]
|
|
ipcam = hass.data[DATA_IP_WEBCAM][host]
|
|
|
|
async_add_entities([IPWebcamBinarySensor(name, host, ipcam, "motion_active")], True)
|
|
|
|
|
|
class IPWebcamBinarySensor(AndroidIPCamEntity, BinarySensorDevice):
|
|
"""Representation of an IP Webcam binary sensor."""
|
|
|
|
def __init__(self, name, host, ipcam, sensor):
|
|
"""Initialize the binary sensor."""
|
|
super().__init__(host, ipcam)
|
|
|
|
self._sensor = sensor
|
|
self._mapped_name = KEY_MAP.get(self._sensor, self._sensor)
|
|
self._name = "{} {}".format(name, self._mapped_name)
|
|
self._state = None
|
|
self._unit = None
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the binary sensor, if any."""
|
|
return self._name
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if the binary sensor is on."""
|
|
return self._state
|
|
|
|
@asyncio.coroutine
|
|
def async_update(self):
|
|
"""Retrieve latest state."""
|
|
state, _ = self._ipcam.export_sensor(self._sensor)
|
|
self._state = state == 1.0
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the class of this device, from component DEVICE_CLASSES."""
|
|
return "motion"
|