Add sensor class to bloomsky binary_sensor

This commit is contained in:
Paulus Schoutsen 2016-02-20 00:08:02 -08:00
parent fb9d8c79b5
commit 8a1fa82205
2 changed files with 6 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class BinarySensorDevice(Entity):
@property @property
def sensor_class(self): def sensor_class(self):
"""Return the class of this sensor, from SENSOR_CASSES.""" """Return the class of this sensor, from SENSOR_CLASSES."""
return None return None
@property @property

View File

@ -56,6 +56,11 @@ class BloomSkySensor(BinarySensorDevice):
"""Unique ID for this sensor.""" """Unique ID for this sensor."""
return self._unique_id return self._unique_id
@property
def sensor_class(self):
"""Return the class of this sensor, from SENSOR_CLASSES."""
return SENSOR_TYPES.get(self._sensor_name)
@property @property
def is_on(self): def is_on(self):
"""If binary sensor is on.""" """If binary sensor is on."""