Skip to content

Commit

Permalink
Added support for SerenaHoneycombShades to Lutron Caseta (#8662)
Browse files Browse the repository at this point in the history
Add an optional extended description…
  • Loading branch information
kfcook authored and pvizeli committed Jul 27, 2017
1 parent 3b4ea86 commit f5eeb25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion homeassistant/components/cover/lutron_caseta.py
Expand Up @@ -23,7 +23,8 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
"""Set up the Lutron Caseta Serena shades as a cover device."""
devs = []
bridge = hass.data[LUTRON_CASETA_SMARTBRIDGE]
cover_devices = bridge.get_devices_by_types(["SerenaRollerShade"])
cover_devices = bridge.get_devices_by_types(["SerenaRollerShade",
"SerenaHoneycombShade"])
for cover_device in cover_devices:
dev = LutronCasetaCover(cover_device, bridge)
devs.append(dev)
Expand Down

0 comments on commit f5eeb25

Please sign in to comment.