Regression: The device specific attributes of ZWave devices got lost.
Light and ZWaveDeviceEntity both have overwritten the property state_attributes This includes the device specific attributes in the state_attributes againpull/1108/head
parent
b19fbd8e72
commit
8cf5ca0ba8
|
@ -99,6 +99,11 @@ class ZWaveSensor(ZWaveDeviceEntity, Entity):
|
|||
""" Returns the state of the sensor. """
|
||||
return self._value.data
|
||||
|
||||
@property
|
||||
def state_attributes(self):
|
||||
""" Returns optional state attributes. """
|
||||
return self.device_state_attributes
|
||||
|
||||
@property
|
||||
def unit_of_measurement(self):
|
||||
return self._value.units
|
||||
|
|
|
@ -255,8 +255,8 @@ class ZWaveDeviceEntity:
|
|||
return object_id
|
||||
|
||||
@property
|
||||
def state_attributes(self):
|
||||
""" Returns the state attributes. """
|
||||
def device_state_attributes(self):
|
||||
""" Returns device specific state attributes. """
|
||||
attrs = {
|
||||
ATTR_NODE_ID: self._value.node.node_id,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue