Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions homeassistant/components/light/nanoleaf_aurora.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,16 @@ def effect_list(self):
"""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."""
Expand Down