* Update sleepyq to 0.7 Fixes crash when working with a single sleeper. * sleepiq: Handle null side definitions These happen if no sleeper is defined for a side of the bed. Don't create sensors for null sides; they'll crash every time we try to use them. * sleepiq: Fix urls mocked to match sleepyq 0.7 * sleepi: Fix test_sensor.TestSleepIQSensorSetup Sleepyq 0.7 throws on empty strings, so we have to specify them. * sleepiq: Test for ValueError thrown by sleepyq 0.7 * sleepiq: Drop no longer used HTTPError import * sleepiq: Add tests for single sleeper case * sleepiq: Shorten comments to not overflow line length * sleepiq: Use formatted string literals for adding suffixes to test files * sleepiq: Use str.format() for test suffixing
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
"""Support for SleepIQ sensors."""
|
|
from homeassistant.components import sleepiq
|
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the SleepIQ sensors."""
|
|
if discovery_info is None:
|
|
return
|
|
|
|
data = sleepiq.DATA
|
|
data.update()
|
|
|
|
dev = list()
|
|
for bed_id, bed in data.beds.items():
|
|
for side in sleepiq.SIDES:
|
|
if getattr(bed, side) is not None:
|
|
dev.append(IsInBedBinarySensor(data, bed_id, side))
|
|
add_entities(dev)
|
|
|
|
|
|
class IsInBedBinarySensor(sleepiq.SleepIQSensor, BinarySensorDevice):
|
|
"""Implementation of a SleepIQ presence sensor."""
|
|
|
|
def __init__(self, sleepiq_data, bed_id, side):
|
|
"""Initialize the sensor."""
|
|
sleepiq.SleepIQSensor.__init__(self, sleepiq_data, bed_id, side)
|
|
self.type = sleepiq.IS_IN_BED
|
|
self._state = None
|
|
self._name = sleepiq.SENSOR_TYPES[self.type]
|
|
self.update()
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return the status of the sensor."""
|
|
return self._state is True
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the class of this sensor."""
|
|
return "occupancy"
|
|
|
|
def update(self):
|
|
"""Get the latest data from SleepIQ and updates the states."""
|
|
sleepiq.SleepIQSensor.update(self)
|
|
self._state = self.side.is_in_bed
|