88 lines
2.5 KiB
Python
88 lines
2.5 KiB
Python
"""Support for HomeMatic binary sensors."""
|
|
import logging
|
|
|
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
|
from homeassistant.components.homematic import (
|
|
ATTR_DISCOVERY_TYPE, DISCOVER_BATTERY)
|
|
from homeassistant.const import DEVICE_CLASS_BATTERY
|
|
|
|
from . import ATTR_DISCOVER_DEVICES, HMDevice
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
SENSOR_TYPES_CLASS = {
|
|
'IPShutterContact': 'opening',
|
|
'IPShutterContactSabotage': 'opening',
|
|
'MaxShutterContact': 'opening',
|
|
'Motion': 'motion',
|
|
'MotionV2': 'motion',
|
|
'PresenceIP': 'motion',
|
|
'Remote': None,
|
|
'RemoteMotion': None,
|
|
'ShutterContact': 'opening',
|
|
'Smoke': 'smoke',
|
|
'SmokeV2': 'smoke',
|
|
'TiltSensor': None,
|
|
'WeatherSensor': None,
|
|
}
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the HomeMatic binary sensor platform."""
|
|
if discovery_info is None:
|
|
return
|
|
|
|
devices = []
|
|
for conf in discovery_info[ATTR_DISCOVER_DEVICES]:
|
|
if discovery_info[ATTR_DISCOVERY_TYPE] == DISCOVER_BATTERY:
|
|
devices.append(HMBatterySensor(conf))
|
|
else:
|
|
devices.append(HMBinarySensor(conf))
|
|
|
|
add_entities(devices)
|
|
|
|
|
|
class HMBinarySensor(HMDevice, BinarySensorDevice):
|
|
"""Representation of a binary HomeMatic device."""
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if switch is on."""
|
|
if not self.available:
|
|
return False
|
|
return bool(self._hm_get_state())
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the class of this sensor from DEVICE_CLASSES."""
|
|
# If state is MOTION (Only RemoteMotion working)
|
|
if self._state == 'MOTION':
|
|
return 'motion'
|
|
return SENSOR_TYPES_CLASS.get(self._hmdevice.__class__.__name__, None)
|
|
|
|
def _init_data_struct(self):
|
|
"""Generate the data dictionary (self._data) from metadata."""
|
|
# Add state to data struct
|
|
if self._state:
|
|
self._data.update({self._state: None})
|
|
|
|
|
|
class HMBatterySensor(HMDevice, BinarySensorDevice):
|
|
"""Representation of an HomeMatic low battery sensor."""
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return battery as a device class."""
|
|
return DEVICE_CLASS_BATTERY
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return True if battery is low."""
|
|
return bool(self._hm_get_state())
|
|
|
|
def _init_data_struct(self):
|
|
"""Generate the data dictionary (self._data) from metadata."""
|
|
# Add state to data struct
|
|
if self._state:
|
|
self._data.update({self._state: None})
|