Home assistant integration to integrate with LED BLE devices, controlled via apps developed by FINDN LTD (MR STAR and SYMPHONY LIGHT).
Example of compatible device: LED strip on Ozon
This integration will set up the following platforms.
| Platform | Description |
|---|---|
light |
LED BLE device controlled by this integration. |
- Open HACS in your Home Assistant instance
- Click on "Integrations"
- Click the three dots in the top right corner and select "Custom repositories"
- Add
https://github.com/hirotasoshu/ha-findn-led-bleas repository, select "Integration" as category - Click "Add"
- Find "Findn LED BLE" in the list and click "Download"
- Restart Home Assistant
- In the HA UI go to "Settings" -> "Devices & Services" click "+" and search for "Findn LED BLE"
- Using the tool of choice open the directory (folder) for your HA configuration (where you find
configuration.yaml). - If you do not have a
custom_componentsdirectory (folder) there, you need to create it. - In the
custom_componentsdirectory (folder) create a new folder calledfindn_led_ble. - Download all the files from the
custom_components/findn_led_ble/directory (folder) in this repository. - Place the files you downloaded in the new directory (folder) you created.
- Restart Home Assistant
- In the HA UI go to "Settings" -> "Devices & Services" click "+" and search for "Findn LED BLE"
This integration supports the following features:
- Turn on/off - Control the power state of your LED strip
- Brightness control - Adjust brightness from 1 to 255
- RGB color control - Set any RGB color
- HS color control - Set color using hue and saturation
- 58 built-in effects - Including colorful animations, running water effects, tailing effects, and more
The integration includes 58 pre-configured effects such as:
- Automatic loop, Symphony, Colorful energy
- 7 colors effects (strobe, gradient, opening-closing, etc.)
- Running water effects (7 colors, red-green, blue-purple, etc.)
- Tailing effects (7 colors, red, green, blue, etc.)
- Running effects (all colors)
- And many more!
You can set effects with optional direction control using the findn_led_ble.set_effect service.
Example service call:
service: findn_led_ble.set_effect
target:
entity_id: light.led_strip
data:
effect: "7 colors flowing water"
direction: forward # optional: forward or backwardTurn off effect:
service: findn_led_ble.set_effect
target:
entity_id: light.led_strip
data:
effect: "off"If you want to contribute to this please read the Contribution guidelines