mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 12:17:07 +00:00
Deduplicate light services.yaml (#118738)
* Deduplicate light services.yaml * Remove support for .-keys
This commit is contained in:
parent
7ed119b0b6
commit
c0912a019c
@ -5,7 +5,7 @@ turn_on:
|
|||||||
entity:
|
entity:
|
||||||
domain: light
|
domain: light
|
||||||
fields:
|
fields:
|
||||||
transition:
|
transition: &transition
|
||||||
filter:
|
filter:
|
||||||
supported_features:
|
supported_features:
|
||||||
- light.LightEntityFeature.TRANSITION
|
- light.LightEntityFeature.TRANSITION
|
||||||
@ -14,8 +14,8 @@ turn_on:
|
|||||||
min: 0
|
min: 0
|
||||||
max: 300
|
max: 300
|
||||||
unit_of_measurement: seconds
|
unit_of_measurement: seconds
|
||||||
rgb_color:
|
rgb_color: &rgb_color
|
||||||
filter:
|
filter: &color_support
|
||||||
attribute:
|
attribute:
|
||||||
supported_color_modes:
|
supported_color_modes:
|
||||||
- light.ColorMode.HS
|
- light.ColorMode.HS
|
||||||
@ -26,46 +26,25 @@ turn_on:
|
|||||||
example: "[255, 100, 100]"
|
example: "[255, 100, 100]"
|
||||||
selector:
|
selector:
|
||||||
color_rgb:
|
color_rgb:
|
||||||
rgbw_color:
|
rgbw_color: &rgbw_color
|
||||||
filter:
|
filter: *color_support
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
advanced: true
|
||||||
example: "[255, 100, 100, 50]"
|
example: "[255, 100, 100, 50]"
|
||||||
selector:
|
selector:
|
||||||
object:
|
object:
|
||||||
rgbww_color:
|
rgbww_color: &rgbww_color
|
||||||
filter:
|
filter: *color_support
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
advanced: true
|
||||||
example: "[255, 100, 100, 50, 70]"
|
example: "[255, 100, 100, 50, 70]"
|
||||||
selector:
|
selector:
|
||||||
object:
|
object:
|
||||||
color_name:
|
color_name: &color_name
|
||||||
filter:
|
filter: *color_support
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
advanced: true
|
||||||
selector:
|
selector:
|
||||||
select:
|
select:
|
||||||
translation_key: color_name
|
translation_key: color_name
|
||||||
options:
|
options: &named_colors
|
||||||
- "homeassistant"
|
- "homeassistant"
|
||||||
- "aliceblue"
|
- "aliceblue"
|
||||||
- "antiquewhite"
|
- "antiquewhite"
|
||||||
@ -215,34 +194,20 @@ turn_on:
|
|||||||
- "whitesmoke"
|
- "whitesmoke"
|
||||||
- "yellow"
|
- "yellow"
|
||||||
- "yellowgreen"
|
- "yellowgreen"
|
||||||
hs_color:
|
hs_color: &hs_color
|
||||||
filter:
|
filter: *color_support
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
advanced: true
|
||||||
example: "[300, 70]"
|
example: "[300, 70]"
|
||||||
selector:
|
selector:
|
||||||
object:
|
object:
|
||||||
xy_color:
|
xy_color: &xy_color
|
||||||
filter:
|
filter: *color_support
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
advanced: true
|
||||||
example: "[0.52, 0.43]"
|
example: "[0.52, 0.43]"
|
||||||
selector:
|
selector:
|
||||||
object:
|
object:
|
||||||
color_temp:
|
color_temp: &color_temp
|
||||||
filter:
|
filter: &color_temp_support
|
||||||
attribute:
|
attribute:
|
||||||
supported_color_modes:
|
supported_color_modes:
|
||||||
- light.ColorMode.COLOR_TEMP
|
- light.ColorMode.COLOR_TEMP
|
||||||
@ -257,23 +222,15 @@ turn_on:
|
|||||||
unit: "mired"
|
unit: "mired"
|
||||||
min: 153
|
min: 153
|
||||||
max: 500
|
max: 500
|
||||||
kelvin:
|
kelvin: &kelvin
|
||||||
filter:
|
filter: *color_temp_support
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.COLOR_TEMP
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
selector:
|
selector:
|
||||||
color_temp:
|
color_temp:
|
||||||
unit: "kelvin"
|
unit: "kelvin"
|
||||||
min: 2000
|
min: 2000
|
||||||
max: 6500
|
max: 6500
|
||||||
brightness:
|
brightness: &brightness
|
||||||
filter:
|
filter: &brightness_support
|
||||||
attribute:
|
attribute:
|
||||||
supported_color_modes:
|
supported_color_modes:
|
||||||
- light.ColorMode.BRIGHTNESS
|
- light.ColorMode.BRIGHTNESS
|
||||||
@ -288,55 +245,28 @@ turn_on:
|
|||||||
number:
|
number:
|
||||||
min: 0
|
min: 0
|
||||||
max: 255
|
max: 255
|
||||||
brightness_pct:
|
brightness_pct: &brightness_pct
|
||||||
filter:
|
filter: *brightness_support
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.BRIGHTNESS
|
|
||||||
- light.ColorMode.COLOR_TEMP
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
selector:
|
selector:
|
||||||
number:
|
number:
|
||||||
min: 0
|
min: 0
|
||||||
max: 100
|
max: 100
|
||||||
unit_of_measurement: "%"
|
unit_of_measurement: "%"
|
||||||
brightness_step:
|
brightness_step:
|
||||||
filter:
|
filter: *brightness_support
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.BRIGHTNESS
|
|
||||||
- light.ColorMode.COLOR_TEMP
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
advanced: true
|
||||||
selector:
|
selector:
|
||||||
number:
|
number:
|
||||||
min: -225
|
min: -225
|
||||||
max: 255
|
max: 255
|
||||||
brightness_step_pct:
|
brightness_step_pct:
|
||||||
filter:
|
filter: *brightness_support
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.BRIGHTNESS
|
|
||||||
- light.ColorMode.COLOR_TEMP
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
selector:
|
selector:
|
||||||
number:
|
number:
|
||||||
min: -100
|
min: -100
|
||||||
max: 100
|
max: 100
|
||||||
unit_of_measurement: "%"
|
unit_of_measurement: "%"
|
||||||
white:
|
white: &white
|
||||||
filter:
|
filter:
|
||||||
attribute:
|
attribute:
|
||||||
supported_color_modes:
|
supported_color_modes:
|
||||||
@ -346,12 +276,12 @@ turn_on:
|
|||||||
constant:
|
constant:
|
||||||
value: true
|
value: true
|
||||||
label: Enabled
|
label: Enabled
|
||||||
profile:
|
profile: &profile
|
||||||
advanced: true
|
advanced: true
|
||||||
example: relax
|
example: relax
|
||||||
selector:
|
selector:
|
||||||
text:
|
text:
|
||||||
flash:
|
flash: &flash
|
||||||
filter:
|
filter:
|
||||||
supported_features:
|
supported_features:
|
||||||
- light.LightEntityFeature.FLASH
|
- light.LightEntityFeature.FLASH
|
||||||
@ -363,7 +293,7 @@ turn_on:
|
|||||||
value: "long"
|
value: "long"
|
||||||
- label: "Short"
|
- label: "Short"
|
||||||
value: "short"
|
value: "short"
|
||||||
effect:
|
effect: &effect
|
||||||
filter:
|
filter:
|
||||||
supported_features:
|
supported_features:
|
||||||
- light.LightEntityFeature.EFFECT
|
- light.LightEntityFeature.EFFECT
|
||||||
@ -375,362 +305,26 @@ turn_off:
|
|||||||
entity:
|
entity:
|
||||||
domain: light
|
domain: light
|
||||||
fields:
|
fields:
|
||||||
transition:
|
transition: *transition
|
||||||
filter:
|
flash: *flash
|
||||||
supported_features:
|
|
||||||
- light.LightEntityFeature.TRANSITION
|
|
||||||
selector:
|
|
||||||
number:
|
|
||||||
min: 0
|
|
||||||
max: 300
|
|
||||||
unit_of_measurement: seconds
|
|
||||||
flash:
|
|
||||||
filter:
|
|
||||||
supported_features:
|
|
||||||
- light.LightEntityFeature.FLASH
|
|
||||||
advanced: true
|
|
||||||
selector:
|
|
||||||
select:
|
|
||||||
options:
|
|
||||||
- label: "Long"
|
|
||||||
value: "long"
|
|
||||||
- label: "Short"
|
|
||||||
value: "short"
|
|
||||||
|
|
||||||
toggle:
|
toggle:
|
||||||
target:
|
target:
|
||||||
entity:
|
entity:
|
||||||
domain: light
|
domain: light
|
||||||
fields:
|
fields:
|
||||||
transition:
|
transition: *transition
|
||||||
filter:
|
rgb_color: *rgb_color
|
||||||
supported_features:
|
rgbw_color: *rgbw_color
|
||||||
- light.LightEntityFeature.TRANSITION
|
rgbww_color: *rgbww_color
|
||||||
selector:
|
color_name: *color_name
|
||||||
number:
|
hs_color: *hs_color
|
||||||
min: 0
|
xy_color: *xy_color
|
||||||
max: 300
|
color_temp: *color_temp
|
||||||
unit_of_measurement: seconds
|
kelvin: *kelvin
|
||||||
rgb_color:
|
brightness: *brightness
|
||||||
filter:
|
brightness_pct: *brightness_pct
|
||||||
attribute:
|
white: *white
|
||||||
supported_color_modes:
|
profile: *profile
|
||||||
- light.ColorMode.HS
|
flash: *flash
|
||||||
- light.ColorMode.XY
|
effect: *effect
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
example: "[255, 100, 100]"
|
|
||||||
selector:
|
|
||||||
color_rgb:
|
|
||||||
rgbw_color:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
|
||||||
example: "[255, 100, 100, 50]"
|
|
||||||
selector:
|
|
||||||
object:
|
|
||||||
rgbww_color:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
|
||||||
example: "[255, 100, 100, 50, 70]"
|
|
||||||
selector:
|
|
||||||
object:
|
|
||||||
color_name:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
|
||||||
selector:
|
|
||||||
select:
|
|
||||||
translation_key: color_name
|
|
||||||
options:
|
|
||||||
- "homeassistant"
|
|
||||||
- "aliceblue"
|
|
||||||
- "antiquewhite"
|
|
||||||
- "aqua"
|
|
||||||
- "aquamarine"
|
|
||||||
- "azure"
|
|
||||||
- "beige"
|
|
||||||
- "bisque"
|
|
||||||
# Black is omitted from this list as nonsensical for lights
|
|
||||||
- "blanchedalmond"
|
|
||||||
- "blue"
|
|
||||||
- "blueviolet"
|
|
||||||
- "brown"
|
|
||||||
- "burlywood"
|
|
||||||
- "cadetblue"
|
|
||||||
- "chartreuse"
|
|
||||||
- "chocolate"
|
|
||||||
- "coral"
|
|
||||||
- "cornflowerblue"
|
|
||||||
- "cornsilk"
|
|
||||||
- "crimson"
|
|
||||||
- "cyan"
|
|
||||||
- "darkblue"
|
|
||||||
- "darkcyan"
|
|
||||||
- "darkgoldenrod"
|
|
||||||
- "darkgray"
|
|
||||||
- "darkgreen"
|
|
||||||
- "darkgrey"
|
|
||||||
- "darkkhaki"
|
|
||||||
- "darkmagenta"
|
|
||||||
- "darkolivegreen"
|
|
||||||
- "darkorange"
|
|
||||||
- "darkorchid"
|
|
||||||
- "darkred"
|
|
||||||
- "darksalmon"
|
|
||||||
- "darkseagreen"
|
|
||||||
- "darkslateblue"
|
|
||||||
- "darkslategray"
|
|
||||||
- "darkslategrey"
|
|
||||||
- "darkturquoise"
|
|
||||||
- "darkviolet"
|
|
||||||
- "deeppink"
|
|
||||||
- "deepskyblue"
|
|
||||||
- "dimgray"
|
|
||||||
- "dimgrey"
|
|
||||||
- "dodgerblue"
|
|
||||||
- "firebrick"
|
|
||||||
- "floralwhite"
|
|
||||||
- "forestgreen"
|
|
||||||
- "fuchsia"
|
|
||||||
- "gainsboro"
|
|
||||||
- "ghostwhite"
|
|
||||||
- "gold"
|
|
||||||
- "goldenrod"
|
|
||||||
- "gray"
|
|
||||||
- "green"
|
|
||||||
- "greenyellow"
|
|
||||||
- "grey"
|
|
||||||
- "honeydew"
|
|
||||||
- "hotpink"
|
|
||||||
- "indianred"
|
|
||||||
- "indigo"
|
|
||||||
- "ivory"
|
|
||||||
- "khaki"
|
|
||||||
- "lavender"
|
|
||||||
- "lavenderblush"
|
|
||||||
- "lawngreen"
|
|
||||||
- "lemonchiffon"
|
|
||||||
- "lightblue"
|
|
||||||
- "lightcoral"
|
|
||||||
- "lightcyan"
|
|
||||||
- "lightgoldenrodyellow"
|
|
||||||
- "lightgray"
|
|
||||||
- "lightgreen"
|
|
||||||
- "lightgrey"
|
|
||||||
- "lightpink"
|
|
||||||
- "lightsalmon"
|
|
||||||
- "lightseagreen"
|
|
||||||
- "lightskyblue"
|
|
||||||
- "lightslategray"
|
|
||||||
- "lightslategrey"
|
|
||||||
- "lightsteelblue"
|
|
||||||
- "lightyellow"
|
|
||||||
- "lime"
|
|
||||||
- "limegreen"
|
|
||||||
- "linen"
|
|
||||||
- "magenta"
|
|
||||||
- "maroon"
|
|
||||||
- "mediumaquamarine"
|
|
||||||
- "mediumblue"
|
|
||||||
- "mediumorchid"
|
|
||||||
- "mediumpurple"
|
|
||||||
- "mediumseagreen"
|
|
||||||
- "mediumslateblue"
|
|
||||||
- "mediumspringgreen"
|
|
||||||
- "mediumturquoise"
|
|
||||||
- "mediumvioletred"
|
|
||||||
- "midnightblue"
|
|
||||||
- "mintcream"
|
|
||||||
- "mistyrose"
|
|
||||||
- "moccasin"
|
|
||||||
- "navajowhite"
|
|
||||||
- "navy"
|
|
||||||
- "navyblue"
|
|
||||||
- "oldlace"
|
|
||||||
- "olive"
|
|
||||||
- "olivedrab"
|
|
||||||
- "orange"
|
|
||||||
- "orangered"
|
|
||||||
- "orchid"
|
|
||||||
- "palegoldenrod"
|
|
||||||
- "palegreen"
|
|
||||||
- "paleturquoise"
|
|
||||||
- "palevioletred"
|
|
||||||
- "papayawhip"
|
|
||||||
- "peachpuff"
|
|
||||||
- "peru"
|
|
||||||
- "pink"
|
|
||||||
- "plum"
|
|
||||||
- "powderblue"
|
|
||||||
- "purple"
|
|
||||||
- "red"
|
|
||||||
- "rosybrown"
|
|
||||||
- "royalblue"
|
|
||||||
- "saddlebrown"
|
|
||||||
- "salmon"
|
|
||||||
- "sandybrown"
|
|
||||||
- "seagreen"
|
|
||||||
- "seashell"
|
|
||||||
- "sienna"
|
|
||||||
- "silver"
|
|
||||||
- "skyblue"
|
|
||||||
- "slateblue"
|
|
||||||
- "slategray"
|
|
||||||
- "slategrey"
|
|
||||||
- "snow"
|
|
||||||
- "springgreen"
|
|
||||||
- "steelblue"
|
|
||||||
- "tan"
|
|
||||||
- "teal"
|
|
||||||
- "thistle"
|
|
||||||
- "tomato"
|
|
||||||
- "turquoise"
|
|
||||||
- "violet"
|
|
||||||
- "wheat"
|
|
||||||
- "white"
|
|
||||||
- "whitesmoke"
|
|
||||||
- "yellow"
|
|
||||||
- "yellowgreen"
|
|
||||||
hs_color:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
|
||||||
example: "[300, 70]"
|
|
||||||
selector:
|
|
||||||
object:
|
|
||||||
xy_color:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
|
||||||
example: "[0.52, 0.43]"
|
|
||||||
selector:
|
|
||||||
object:
|
|
||||||
color_temp:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.COLOR_TEMP
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
|
||||||
selector:
|
|
||||||
color_temp:
|
|
||||||
unit: "mired"
|
|
||||||
min: 153
|
|
||||||
max: 500
|
|
||||||
kelvin:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.COLOR_TEMP
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
selector:
|
|
||||||
color_temp:
|
|
||||||
unit: "kelvin"
|
|
||||||
min: 2000
|
|
||||||
max: 6500
|
|
||||||
brightness:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.BRIGHTNESS
|
|
||||||
- light.ColorMode.COLOR_TEMP
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
advanced: true
|
|
||||||
selector:
|
|
||||||
number:
|
|
||||||
min: 0
|
|
||||||
max: 255
|
|
||||||
brightness_pct:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.BRIGHTNESS
|
|
||||||
- light.ColorMode.COLOR_TEMP
|
|
||||||
- light.ColorMode.HS
|
|
||||||
- light.ColorMode.XY
|
|
||||||
- light.ColorMode.RGB
|
|
||||||
- light.ColorMode.RGBW
|
|
||||||
- light.ColorMode.RGBWW
|
|
||||||
selector:
|
|
||||||
number:
|
|
||||||
min: 0
|
|
||||||
max: 100
|
|
||||||
unit_of_measurement: "%"
|
|
||||||
white:
|
|
||||||
filter:
|
|
||||||
attribute:
|
|
||||||
supported_color_modes:
|
|
||||||
- light.ColorMode.WHITE
|
|
||||||
advanced: true
|
|
||||||
selector:
|
|
||||||
constant:
|
|
||||||
value: true
|
|
||||||
label: Enabled
|
|
||||||
profile:
|
|
||||||
advanced: true
|
|
||||||
example: relax
|
|
||||||
selector:
|
|
||||||
text:
|
|
||||||
flash:
|
|
||||||
filter:
|
|
||||||
supported_features:
|
|
||||||
- light.LightEntityFeature.FLASH
|
|
||||||
advanced: true
|
|
||||||
selector:
|
|
||||||
select:
|
|
||||||
options:
|
|
||||||
- label: "Long"
|
|
||||||
value: "long"
|
|
||||||
- label: "Short"
|
|
||||||
value: "short"
|
|
||||||
effect:
|
|
||||||
filter:
|
|
||||||
supported_features:
|
|
||||||
- light.LightEntityFeature.EFFECT
|
|
||||||
selector:
|
|
||||||
text:
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user