Skip to content

Commit

Permalink
Add support for the Hampton Bay L08557 Light
Browse files Browse the repository at this point in the history
This is an outdoor RGBW stake light.
  • Loading branch information
DHowett authored Dec 30, 2023
1 parent 88de250 commit 035f2cd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions custom_components/hubspace/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,15 @@ def __init__(
)
self._max_mireds = 370
self._min_mireds = 154
# https://www.homedepot.com/p/Hampton-Bay-10-Watt-Equivalent-Low-Voltage-Black-LED-Outdoor-Landscape-Spotlight-with-Smart-App-Control-3-Pack-Powered-by-Hubspace-L08557/318145795
if (
self._model == "L008557"
):
self._supported_color_modes.extend(
[ColorMode.RGB, ColorMode.COLOR_TEMP, ColorMode.WHITE]
)
self._max_mireds = 370
self._min_mireds = 154

if (
self._model == "ZandraFan"
Expand Down

0 comments on commit 035f2cd

Please sign in to comment.