61 lines
1.8 KiB
Python
61 lines
1.8 KiB
Python
"""Support for SimpliSafe freeze sensor."""
|
|
from simplipy.entity import EntityTypes
|
|
|
|
from homeassistant.components.sensor import SensorEntity
|
|
from homeassistant.const import DEVICE_CLASS_TEMPERATURE, TEMP_FAHRENHEIT
|
|
from homeassistant.core import callback
|
|
|
|
from . import SimpliSafeBaseSensor
|
|
from .const import DATA_CLIENT, DOMAIN, LOGGER
|
|
|
|
|
|
async def async_setup_entry(hass, entry, async_add_entities):
|
|
"""Set up SimpliSafe freeze sensors based on a config entry."""
|
|
simplisafe = hass.data[DOMAIN][DATA_CLIENT][entry.entry_id]
|
|
sensors = []
|
|
|
|
for system in simplisafe.systems.values():
|
|
if system.version == 2:
|
|
LOGGER.info("Skipping sensor setup for V2 system: %s", system.system_id)
|
|
continue
|
|
|
|
for sensor in system.sensors.values():
|
|
if sensor.type == EntityTypes.temperature:
|
|
sensors.append(SimplisafeFreezeSensor(simplisafe, system, sensor))
|
|
|
|
async_add_entities(sensors)
|
|
|
|
|
|
class SimplisafeFreezeSensor(SimpliSafeBaseSensor, SensorEntity):
|
|
"""Define a SimpliSafe freeze sensor entity."""
|
|
|
|
def __init__(self, simplisafe, system, sensor):
|
|
"""Initialize."""
|
|
super().__init__(simplisafe, system, sensor)
|
|
self._state = None
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return type of sensor."""
|
|
return DEVICE_CLASS_TEMPERATURE
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return unique ID of sensor."""
|
|
return self._sensor.serial
|
|
|
|
@property
|
|
def unit_of_measurement(self):
|
|
"""Return the unit of measurement."""
|
|
return TEMP_FAHRENHEIT
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the sensor state."""
|
|
return self._state
|
|
|
|
@callback
|
|
def async_update_from_rest_api(self):
|
|
"""Update the entity with the provided REST API data."""
|
|
self._state = self._sensor.temperature
|