mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-18 14:56:53 +00:00
Addition of configuration example for RGBW strip (#6845)
Addition of configuration example for the new RGBW strip (RGB + Separate white channel)
This commit is contained in:
parent
944d7b6f25
commit
e083f627e0
@ -256,6 +256,23 @@ Home Assistant expects the hue values to be in the range 0 to 360 and the satura
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### {% linkable_title Brightness and RGBW support %}
|
||||||
|
|
||||||
|
To enable a light with brightness, RGB support and a separate white channel (RGBW) in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
light:
|
||||||
|
- platform: mqtt_json
|
||||||
|
name: mqtt_json_light_1
|
||||||
|
state_topic: "home/rgbw1"
|
||||||
|
command_topic: "home/rgbw1/set"
|
||||||
|
brightness: true
|
||||||
|
rgb: true
|
||||||
|
white_value: true
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### {% linkable_title Implementations %}
|
### {% linkable_title Implementations %}
|
||||||
|
|
||||||
- A full example of custom lighting using this platform and an ESP8266 microcontroller can be found [here](https://github.com/corbanmailloux/esp-mqtt-rgb-led). It supports on/off, brightness, transitions, RGB colors, and flashing.
|
- A full example of custom lighting using this platform and an ESP8266 microcontroller can be found [here](https://github.com/corbanmailloux/esp-mqtt-rgb-led). It supports on/off, brightness, transitions, RGB colors, and flashing.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user