Unique ID for LIFX lights (#12064)
This commit is contained in:
parent
dfd2d631ae
commit
990fbdf3ca
1 changed files with 5 additions and 0 deletions
|
@ -397,6 +397,11 @@ class LIFXLight(Light):
|
||||||
"""Return the availability of the device."""
|
"""Return the availability of the device."""
|
||||||
return self.registered
|
return self.registered
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return a unique ID."""
|
||||||
|
return self.device.mac_addr
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def name(self):
|
def name(self):
|
||||||
"""Return the name of the device."""
|
"""Return the name of the device."""
|
||||||
|
|
Loading…
Add table
Reference in a new issue