From eebb736bf83c572b797931c571e7416223436461 Mon Sep 17 00:00:00 2001 From: Harald Nagel Date: Fri, 29 Jan 2016 04:36:40 +0000 Subject: [PATCH] Add ability to control dimmable sources --- homeassistant/components/light/insteon.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/light/insteon.py b/homeassistant/components/light/insteon.py index 07c4d19b202..c1632133d8f 100644 --- a/homeassistant/components/light/insteon.py +++ b/homeassistant/components/light/insteon.py @@ -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)