Skip to content

Commit

Permalink
Adds support for the PlugInDimmer hardware (#6915)
Browse files Browse the repository at this point in the history
  • Loading branch information
gurumitts authored and balloob committed Apr 3, 2017
1 parent a107a59 commit 01e581a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/light/lutron_caseta.py
Expand Up @@ -19,7 +19,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
"""Setup Lutron Caseta lights."""
devs = []
bridge = hass.data[LUTRON_CASETA_SMARTBRIDGE]
light_devices = bridge.get_devices_by_type("WallDimmer")
light_devices = bridge.get_devices_by_types(["WallDimmer", "PlugInDimmer"])
for light_device in light_devices:
dev = LutronCasetaLight(light_device, bridge)
devs.append(dev)
Expand Down
4 changes: 2 additions & 2 deletions homeassistant/components/lutron_caseta.py
Expand Up @@ -17,8 +17,8 @@
from homeassistant.helpers.entity import Entity

REQUIREMENTS = ['https://github.com/gurumitts/'
'pylutron-caseta/archive/v0.2.4.zip#'
'pylutron-caseta==v0.2.4']
'pylutron-caseta/archive/v0.2.5.zip#'
'pylutron-caseta==v0.2.5']

_LOGGER = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Expand Up @@ -253,7 +253,7 @@ https://github.com/bah2830/python-roku/archive/3.1.3.zip#roku==3.1.3
https://github.com/bashwork/pymodbus/archive/d7fc4f1cc975631e0a9011390e8017f64b612661.zip#pymodbus==1.2.0

# homeassistant.components.lutron_caseta
https://github.com/gurumitts/pylutron-caseta/archive/v0.2.4.zip#pylutron-caseta==v0.2.4
https://github.com/gurumitts/pylutron-caseta/archive/v0.2.5.zip#pylutron-caseta==v0.2.5

# homeassistant.components.netatmo
https://github.com/jabesq/netatmo-api-python/archive/v0.9.1.zip#lnetatmo==0.9.1
Expand Down

0 comments on commit 01e581a

Please sign in to comment.