40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
"""Support for VOC."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.binary_sensor import DEVICE_CLASSES, BinarySensorEntity
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
from . import DATA_KEY, VolvoEntity
|
|
|
|
|
|
async def async_setup_platform(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
async_add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Set up the Volvo sensors."""
|
|
if discovery_info is None:
|
|
return
|
|
async_add_entities([VolvoSensor(hass.data[DATA_KEY], *discovery_info)])
|
|
|
|
|
|
class VolvoSensor(VolvoEntity, BinarySensorEntity):
|
|
"""Representation of a Volvo sensor."""
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return True if the binary sensor is on, but invert for the 'Door lock'."""
|
|
if self.instrument.attr == "is_locked":
|
|
return not self.instrument.is_on
|
|
return self.instrument.is_on
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the class of this sensor, from DEVICE_CLASSES."""
|
|
if self.instrument.device_class in DEVICE_CLASSES:
|
|
return self.instrument.device_class
|
|
return None
|