@@ -57,7 +57,7 @@ automation:
57
57
- service: light.turn_on
58
58
data:
59
59
entity_id: light.office, light.kitchen
60
- effect: lifx_effect_breathe
60
+ effect: lifx_effect_pulse
61
61
` ` `
62
62
63
63
However, if you want to fully control a light effect, you have to use its dedicated service call, like this :
@@ -77,32 +77,19 @@ script:
77
77
78
78
The available light effects and their options are listed below.
79
79
80
- # ## {% linkable_title Service `light.lifx_effect_breathe` %}
81
-
82
- Run a breathe effect by fading to a color and back.
83
-
84
- | Service data attribute | Description |
85
- | ---------------------- | ----------- |
86
- | `entity_id` | String or list of strings that point at `entity_id`s of lights. Else targets all.
87
- | `color_name` | A color name such as `red` or `green`.
88
- | `rgb_color` | A list containing three integers representing the RGB color you want the light to be.
89
- | `brightness` | Integer between 0 and 255 for how bright the color should be.
90
- | `period` | The duration of a single breathe.
91
- | `cycles` | The total number of breathes.
92
- | `power_on` | Set this to False to skip the effect on lights that are turned off (defaults to True).
93
-
94
80
# ## {% linkable_title Service `light.lifx_effect_pulse` %}
95
81
96
- Run a flash effect by quickly changing to a color and then back.
82
+ Run a flash effect by changing to a color and then back.
97
83
98
84
| Service data attribute | Description |
99
85
| ---------------------- | ----------- |
100
86
| `entity_id` | String or list of strings that point at `entity_id`s of lights. Else targets all.
101
87
| `color_name` | A color name such as `red` or `green`.
102
88
| `rgb_color` | A list containing three integers representing the RGB color you want the light to be.
103
89
| `brightness` | Integer between 0 and 255 for how bright the color should be.
104
- | `period` | The duration of a single pulse.
90
+ | `period` | The duration of a single pulse (in seconds) .
105
91
| `cycles` | The total number of pulses.
92
+ | `mode` | The way to change between colors. Valid modes : ` blink` (default), `breathe`, `ping`, `strobe`, `solid`.
106
93
| `power_on` | Set this to False to skip the effect on lights that are turned off (defaults to True).
107
94
108
95
# ## {% linkable_title Service `light.lifx_effect_colorloop` %}
0 commit comments