mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 05:37:44 +00:00
fix nanoleaf aurora lights min and max temperature (#14571)
* fixed nanoleaf aurora lights min and max temperature * review changes
This commit is contained in:
parent
2ff61786bc
commit
6e941af9b2
@ -125,6 +125,16 @@ class AuroraLight(Light):
|
||||
"""Return the list of supported effects."""
|
||||
return self._effects_list
|
||||
|
||||
@property
|
||||
def min_mireds(self):
|
||||
"""Return the coldest color_temp that this light supports."""
|
||||
return 154
|
||||
|
||||
@property
|
||||
def max_mireds(self):
|
||||
"""Return the warmest color_temp that this light supports."""
|
||||
return 833
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
"""Return the display name of this light."""
|
||||
|
Loading…
x
Reference in New Issue
Block a user