From 836eed2a153a0994109d8be196c0db2443424b13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=B8yer=20Iversen?= Date: Tue, 17 Jan 2017 06:52:12 +0100 Subject: [PATCH] fix bug in flux_led (#5373) --- homeassistant/components/light/flux_led.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/light/flux_led.py b/homeassistant/components/light/flux_led.py index 22dd40b30ef..46eec35724a 100644 --- a/homeassistant/components/light/flux_led.py +++ b/homeassistant/components/light/flux_led.py @@ -72,6 +72,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None): continue device['name'] = device['id'] + " " + ipaddr device[ATTR_MODE] = 'rgbw' + device[CONF_PROTOCOL] = None light = FluxLight(device) if light.is_valid: lights.append(light)