From e0308151c1acc04b68eeb17ee6f2fc1ab4fc7e7d Mon Sep 17 00:00:00 2001 From: Brent Hughes Date: Wed, 28 Dec 2016 19:13:43 -0600 Subject: [PATCH 1/3] Added docs for the new ledenet protocol --- source/_components/light.flux_led.markdown | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/_components/light.flux_led.markdown b/source/_components/light.flux_led.markdown index afb0fbb2921..e9d404af622 100644 --- a/source/_components/light.flux_led.markdown +++ b/source/_components/light.flux_led.markdown @@ -22,6 +22,7 @@ Example of bulbs: - [MagicLight® Plus - WiFi Smart LED Light Bulb4](https://www.amazon.com/gp/product/B00NOC93NG) - [Flux WiFi Smart LED Light Bulb4](http://smile.amazon.com/Flux-WiFi-Smart-Light-Bulb/dp/B01A6GHHTE) - [WIFI smart LED light Bulb1](http://smile.amazon.com/gp/product/B01CS1EZYK) +- [Ledenet WiFi RGBW Controller](https://www.amazon.com/gp/product/B01DY56N8U) The chances are high that your bulb or controller (eg. WiFi LED CONTROLLER) will work if you can control the device with the MagicHome app. @@ -89,3 +90,11 @@ Will add a light with white mode (default). Changing the brightness will set the name: NAME mode: "rgbw" ``` + +Some devices such as the Ledenet RGBW controller use a slightly differenct protocol for communicating the brightness to each color channel. If your device is only turning on or off but not changing color or brightness try adding the LEDENET protocol. + +```yaml + 192.168.1.10: + name: NAME + protocol: 'LEDENET' +``` From 6f5b610690f2b2a9178ae3e50f10b2dc4168030e Mon Sep 17 00:00:00 2001 From: Brent Hughes Date: Wed, 28 Dec 2016 23:07:01 -0600 Subject: [PATCH 2/3] made ledenet lowercase --- source/_components/light.flux_led.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/light.flux_led.markdown b/source/_components/light.flux_led.markdown index e9d404af622..4cf0c176025 100644 --- a/source/_components/light.flux_led.markdown +++ b/source/_components/light.flux_led.markdown @@ -96,5 +96,5 @@ Some devices such as the Ledenet RGBW controller use a slightly differenct proto ```yaml 192.168.1.10: name: NAME - protocol: 'LEDENET' + protocol: 'ledenet' ``` From 6514fabc50f2b03af938477933118cf5c88da3aa Mon Sep 17 00:00:00 2001 From: Brent Hughes Date: Thu, 29 Dec 2016 13:29:49 -0600 Subject: [PATCH 3/3] Fixed typo and made example easier to understand --- source/_components/light.flux_led.markdown | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/source/_components/light.flux_led.markdown b/source/_components/light.flux_led.markdown index 4cf0c176025..1fe744c16be 100644 --- a/source/_components/light.flux_led.markdown +++ b/source/_components/light.flux_led.markdown @@ -91,10 +91,13 @@ Will add a light with white mode (default). Changing the brightness will set the mode: "rgbw" ``` -Some devices such as the Ledenet RGBW controller use a slightly differenct protocol for communicating the brightness to each color channel. If your device is only turning on or off but not changing color or brightness try adding the LEDENET protocol. +Some devices such as the Ledenet RGBW controller use a slightly difference protocol for communicating the brightness to each color channel. If your device is only turning on or off but not changing color or brightness try adding the LEDENET protocol. ```yaml - 192.168.1.10: - name: NAME - protocol: 'ledenet' +light: + - platform: flux_led + devices: + 192.168.1.10: + name: NAME + protocol: 'ledenet' ```