Update light.yeelight.markdown (#8446)

Please see additional explanations on the usage of the custom_effects
This commit is contained in:
sparkydave1981 2019-02-08 23:29:56 +08:00 committed by Paulus Schoutsen
parent 79c379207a
commit ffd1482acf

View File

@ -200,6 +200,11 @@ This example shows how you can add your custom effects in your configuration.
Possible transitions are `RGBTransition`, `HSVTransition`, `TemperatureTransition`, `SleepTransition`.
where the array values are as per the following:
- RGBTransition: [red, green, blue, duration, brightness] with red / green / blue being an integer between 0 and 255, duration being in milliseconds (minimum of 50) and final brightness to transition to 0-100 (%)
- HSVTransition: [hue, saturation, duration, brightness] with hue being an integer between 0 and 359, saturation 0 -100, duration in milliseconds (minimum 50) and final brightness 0-100 (%)
- TemperatureTransition: [temp, duration, brightness] with temp being the final color temperature between 1700 and 6500, duration in milliseconds (minimum 50) and final brightness to transition to 0-100 (%)
- SleepTransition: [duration] with duration being in integer for effect time in milliseconds (minimum 50)
More info about transitions and their expected parameters can be found in [python-yeelight documentation](https://yeelight.readthedocs.io/en/stable/flow.html).