3.7 KiB
layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_iot_class, featured, ha_release
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_iot_class | featured | ha_release |
---|---|---|---|---|---|---|---|---|---|---|---|---|
page | Flux Led/MagicLight | Instructions how to setup Flux led/MagicLight within Home Assistant. | 2015-07-17 20:09 | true | false | true | true | magic_light.png | Light | Local Polling | false | 0.25 |
The flux_led
support is integrated into Home Assistant as a light platform. Several brands of both bulbs and controllers use the same protocol and they have the HF-LPB100 chipset in common. 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.
Example of bulbs:
- Flux Smart Lighting
- MagicLight® Plus - WiFi Smart LED Light Bulb4
- Flux WiFi Smart LED Light Bulb4
- WIFI smart LED light Bulb1
Examples of controllers:
To enable those lights, add the following lines to your configuration.yaml
file:
# Example configuration.yaml entry
light:
- platform: flux_led
Configuration variables:
- automatic_add (Optional): To enable the automatic addition of lights on startup.
- devices (Optional): A list of devices with their ip address
Configuration variables within devices list:
- name (Optional): A friendly name for the device.
- mode (Optional): The chosen brightness mode; options are 'rgbw' and 'rgb', defaults to rgbw.
- protocol (Optional): Set this to 'ledenet' if you are using a ledenet bulb.
Depending on your controller or bulb type, there are two ways to configure brightness. The component defaults to rgbw. If your device has a separate white channel, you do not need to specify anything else; changing the brighness will set the device to white with your chosen brightness. However, if your device does not have a separate white channel, you will need to set the mode to rgb. In this mode, the device will keep the same color, and adjust the rgb values to dim or brighten the color.
{% linkable_title Example configuration %}
Will automatically search and add all lights on start up:
# Example configuration.yaml entry
light:
- platform: flux_led
automatic_add: True
Will add two lights with given name and create an automation rule to randomly set color each 45 seconds:
light:
# Example configuration.yaml entry
- platform: flux_led
devices:
192.168.0.106:
name: flux_lamppost
192.168.0.109:
name: flux_living_room_lamp
automation:
alias: random_flux_living_room_lamp
trigger:
platform: time
seconds: '/45'
action:
service: light.turn_on
data:
entity_id: light.flux_living_room_lamp
effect: random
Will add a light without the white mode:
192.168.1.10:
name: NAME
mode: "rgb"
Will add a light with white mode (default). Changing the brightness will set the bulb in white mode:
192.168.1.10:
name: NAME
mode: "rgbw"
Some devices such as the Ledenet RGBW controller use a slightly different 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.
light:
- platform: flux_led
devices:
192.168.1.10:
name: NAME
protocol: 'ledenet'