1
mirror of https://github.com/home-assistant/core synced 2024-08-31 05:57:13 +02:00

Return unique id of Blink binary sensor (#43942)

This commit is contained in:
Brian Rogers 2020-12-05 05:32:49 -05:00 committed by GitHub
parent 0670124e8d
commit c5adaa1f5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,6 +44,11 @@ class BlinkBinarySensor(BinarySensorEntity):
"""Return the name of the blink sensor."""
return self._name
@property
def unique_id(self):
"""Return the unique id of the sensor."""
return self._unique_id
@property
def device_class(self):
"""Return the class of this device."""