mirror of https://github.com/home-assistant/core
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
"""Support for Streamlabs Water Monitor Away Mode."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.binary_sensor import BinarySensorEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import StreamlabsCoordinator
|
|
from .const import DOMAIN
|
|
from .entity import StreamlabsWaterEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Streamlabs water binary sensor from a config entry."""
|
|
coordinator = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
async_add_entities(
|
|
StreamlabsAwayMode(coordinator, location_id) for location_id in coordinator.data
|
|
)
|
|
|
|
|
|
class StreamlabsAwayMode(StreamlabsWaterEntity, BinarySensorEntity):
|
|
"""Monitor the away mode state."""
|
|
|
|
_attr_translation_key = "away_mode"
|
|
|
|
def __init__(self, coordinator: StreamlabsCoordinator, location_id: str) -> None:
|
|
"""Initialize the away mode device."""
|
|
super().__init__(coordinator, location_id, "away_mode")
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return if away mode is on."""
|
|
return self.location_data.is_away
|