7.6 KiB
title, description, ha_category, ha_iot_class, ha_release, ha_domain, ha_platforms, ha_codeowners, ha_quality_scale, ha_config_flow, ha_dhcp
title | description | ha_category | ha_iot_class | ha_release | ha_domain | ha_platforms | ha_codeowners | ha_quality_scale | ha_config_flow | ha_dhcp | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Flux LED/MagicHome | Instructions on how to setup Flux led/MagicHome/MagicLight within Home Assistant. |
|
Local Push | 0.25 | flux_led |
|
|
platinum | true | true |
The Flux LED integration supports several brands of switches, bulbs, and controllers that use the same protocol and have the HF-LPB100 chipset in common. Chances are high that your bulb or controller (eg. WiFi LED CONTROLLER) will work with this integration if you can control the device with the MagicHome app.
This integration will provide local control over your LED lights/strips and can be configured to auto-scan your network for controllers or for you to manually configure individual lights by their IP address.
Example of bulbs:
Examples of controllers:
{% include integrations/config_flow.md %}
After the devices have been added they can be configured with different effects listed below. These settings can be accessed by navigating to the integration settings in Configuration -> Integrations and selecting the "Flux Led/Magic Home" configuration for the bulb or controller.
Custom Effect
A list of RGB colors can be entered to create an effect. The effect speed can be adjusted using the slider underneath.
Custom Effect Type
This determines the transition between each color.
Supported Models
The following models have been tested with integration.
Model | Description | Notes |
---|---|---|
0x04 | UFO Controller RGBW | |
0x06 | Controller RGBW | |
0x07 | Controller RGBCW | |
0x08 | Controller RGB with MIC | |
0x0E | Floor Lamp RGBCW | |
0x10 | Christmas Light | |
0x1A | Christmas Light | |
0x1C | Table Light CCT | |
0x21 | Bulb Dimmable | |
0x25 | Controller RGB/WW/CW | Supports RGB,RGBW,RGBWW,CW,DIM |
0x33 | Controller RGB | |
0x35 | Bulb RGBCW | |
0x41 | Controller Dimmable | |
0x44 | Bulb RGBW | |
0x54 | Downlight RGBW | |
0x93 | Switch 1c | |
0x94 | Switch 1c Watt | |
0x97 | Socket 1c | |
0xA1 | Addressable v1 | |
0xA2 | Addressable v2 | |
0xA3 | Addressable v3 |
Unsupported Models
The following models have not been tested with integration but may work.
Model | Description | Notes |
---|---|---|
0x09 | Ceiling Light CCT | |
0x16 | Magnetic Light CCT | |
0x17 | Magnetic Light Dimmable | |
0x19 | Socket 2 USB | |
0x18 | Plant Light | |
0x1B | Spray Light | |
0x62 | Controller CCT | May be discontinued |
0x52 | Bulb CCT | May be discontinued |
0x95 | Switch 2c | |
0x96 | Switch 4c | |
0xD1 | Digital Light | |
0xE1 | Ceiling Light | |
0xE2 | Ceiling Light Assist | |
0xA4 | Addressable v4 |
Effects
The Flux LED light offers a number of effects which are not included in other lighting packages. These can be selected from the front-end, or sent in the effect field of the light.turn_on
command.
Effect Name | Description |
---|---|
colorloop |
Smoothly transitions through the rainbow. |
colorjump |
Jumps through seven different rainbow colors. |
colorstrobe |
Strobes each rainbow color in a loop. |
red_fade , green_fade , blue_fade , yellow_fade , cyan_fade , purple_fade , white_fade |
Fades between the color as indicated in the effect name and black. |
rg_cross_fade |
Fades between red and green. |
rb_cross_fade |
Fades between red and blue. |
gb_cross_fade |
Fades between green and blue. |
red_strobe , green_strobe , blue_strobe , yellow_strobe , cyan_strobe , purple_strobe , white_strobe |
Strobes the color indicated by the effect name. |
random |
Chooses a random color by selecting random values for R, G, and B. |
Custom Effects - Service flux_led.set_custom_effect
The integration offers a custom service to enable you to set the lights to a custom light effect.
Service data attribute | Description |
---|---|
entity_id |
The entity_id of the LED light to set the effect on. |
colors |
List of RGB colors to transition between in your effect. (Max 16, Required) |
speed_pct |
The speed of the effect in % (0-100. Default 50) |
transition |
The transition effect you would like. Valid options are gradual , jump , or strobe . (Default gradual ) |
#Example Service Call
entity_id: light.led_strip
colors:
- [255,0,0]
- [0,255,0]
- [0,0,255]
speed_pct: 80
transition: "jump"