core/homeassistant/components/tcp/binary_sensor.py

37 lines
1.1 KiB
Python
Raw Normal View History

"""Provides a binary sensor which gets its values from a TCP socket."""
from __future__ import annotations
from typing import Any, Final
from homeassistant.components.binary_sensor import (
PLATFORM_SCHEMA as PARENT_PLATFORM_SCHEMA,
BinarySensorEntity,
)
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import ConfigType
from .common import TCP_PLATFORM_SCHEMA, TcpEntity
from .const import CONF_VALUE_ON
2016-02-14 00:03:56 +00:00
PLATFORM_SCHEMA: Final = PARENT_PLATFORM_SCHEMA.extend(TCP_PLATFORM_SCHEMA)
2016-02-14 00:03:56 +00:00
def setup_platform(
hass: HomeAssistant,
config: ConfigType,
add_entities: AddEntitiesCallback,
discovery_info: dict[str, Any] | None = None,
) -> None:
2016-10-22 04:14:35 +00:00
"""Set up the TCP binary sensor."""
add_entities([TcpBinarySensor(hass, config)])
2016-02-14 00:03:56 +00:00
class TcpBinarySensor(TcpEntity, BinarySensorEntity):
"""A binary sensor which is on when its state == CONF_VALUE_ON."""
2016-03-07 19:21:08 +00:00
2016-02-14 00:03:56 +00:00
@property
def is_on(self) -> bool:
"""Return true if the binary sensor is on."""
return self._state == self._config[CONF_VALUE_ON]