Add ability to control dimmable sources

This commit is contained in:
Harald Nagel 2016-01-29 04:36:40 +00:00
parent f192a15a8f
commit eebb736bf8

View file

@ -13,4 +13,6 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
for device in INSTEON.devices:
if device.DeviceCategory == "Switched Lighting Control":
devs.append(InsteonToggleDevice(device))
if device.DeviceCategory == "Dimmable Lighting Control":
devs.append(InsteonToggleDevice(device))
add_devices(devs)