Skip to content
Snippets Groups Projects
Commit fe749fc0 authored by shred86's avatar shred86 Committed by Fabian Affolter
Browse files

Fix sensor device in the Abode component (#28516)

* Fix for occupancy sensor unique_id

* Add check for sensor attributes before adding entity

* Fixes temperature key issue

* Clean up code with better use of keys

* Code clean up
parent e4196892
No related branches found
No related tags found
No related merge requests found
...@@ -16,9 +16,9 @@ _LOGGER = logging.getLogger(__name__) ...@@ -16,9 +16,9 @@ _LOGGER = logging.getLogger(__name__)
# Sensor types: Name, icon # Sensor types: Name, icon
SENSOR_TYPES = { SENSOR_TYPES = {
"temp": ["Temperature", DEVICE_CLASS_TEMPERATURE], CONST.TEMP_STATUS_KEY: ["Temperature", DEVICE_CLASS_TEMPERATURE],
"humidity": ["Humidity", DEVICE_CLASS_HUMIDITY], CONST.HUMI_STATUS_KEY: ["Humidity", DEVICE_CLASS_HUMIDITY],
"lux": ["Lux", DEVICE_CLASS_ILLUMINANCE], CONST.LUX_STATUS_KEY: ["Lux", DEVICE_CLASS_ILLUMINANCE],
} }
...@@ -29,15 +29,16 @@ async def async_setup_platform(hass, config, async_add_entities, discovery_info= ...@@ -29,15 +29,16 @@ async def async_setup_platform(hass, config, async_add_entities, discovery_info=
async def async_setup_entry(hass, config_entry, async_add_entities): async def async_setup_entry(hass, config_entry, async_add_entities):
"""Set up a sensor for an Abode device.""" """Set up a sensor for an Abode device."""
data = hass.data[DOMAIN] data = hass.data[DOMAIN]
entities = []
devices = []
for device in data.abode.get_devices(generic_type=CONST.TYPE_SENSOR): for device in data.abode.get_devices(generic_type=CONST.TYPE_SENSOR):
for sensor_type in SENSOR_TYPES: for sensor_type in SENSOR_TYPES:
devices.append(AbodeSensor(data, device, sensor_type)) if sensor_type not in device.get_value(CONST.STATUSES_KEY):
continue
entities.append(AbodeSensor(data, device, sensor_type))
async_add_entities(devices) async_add_entities(entities)
class AbodeSensor(AbodeDevice): class AbodeSensor(AbodeDevice):
...@@ -62,6 +63,11 @@ class AbodeSensor(AbodeDevice): ...@@ -62,6 +63,11 @@ class AbodeSensor(AbodeDevice):
"""Return the device class.""" """Return the device class."""
return self._device_class return self._device_class
@property
def unique_id(self):
"""Return a unique ID to use for this device."""
return f"{self._device.device_uuid}-{self._sensor_type}"
@property @property
def state(self): def state(self):
"""Return the state of the sensor.""" """Return the state of the sensor."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment