27 lines
775 B
Python
27 lines
775 B
Python
"""Provides a binary sensor which gets its values from a TCP socket."""
|
|
import logging
|
|
|
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
|
|
|
from .sensor import CONF_VALUE_ON, PLATFORM_SCHEMA, TcpSensor
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({})
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the TCP binary sensor."""
|
|
add_entities([TcpBinarySensor(hass, config)])
|
|
|
|
|
|
class TcpBinarySensor(BinarySensorDevice, TcpSensor):
|
|
"""A binary sensor which is on when its state == CONF_VALUE_ON."""
|
|
|
|
required = (CONF_VALUE_ON,)
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if the binary sensor is on."""
|
|
return self._state == self._config[CONF_VALUE_ON]
|