I have created a basic script to turn on Hue effects on my Hue lights. It has two inputs, a text box for the ieee and a drop down select for each effect.
The dropdown select includes label/value pairs. When I enter them like this:
- label: Candle
value: '21000101'
- label: Fireplace
value: '21000102'
- label: Prism
value: '21000103'
- label: Sunrise
value: '21000109'
- label: Sparkle
value: '2100010a'
- label: Opal
value: '2100010b'
- label: Glisten
value: '2100010c'
- label: Sunset
value: '2100010d'
- label: Underwater
value: '2100010e'
- label: Cosmos
value: '2100010f'
- label: Sunbeam
value: '21000110'
- label: Enchant
value: '21000111'
and then save the script, only certain options work. Reopening the script and the dropdown select reveals that HA has reformatted the entries to look like this:
- label: Candle
value: "21000101"
- label: Fireplace
value: "21000102"
- label: Prism
value: "21000103"
- label: Sunrise
value: "21000109"
- label: Sparkle
value: 2100010a
- label: Opal
value: 2100010b
- label: Glisten
value: 2100010c
- label: Sunset
value: 2100010d
- label: Underwater
value: 2100010e
- label: Cosmos
value: 2100010f
- label: Sunbeam
value: "21000110"
- label: Enchant
value: "21000111"
You can see that the values ending with a letter have had the quotes removed (these are the options that work) and the values ending in a number have had their quotes replaced by double quotes and these do not work.
Why is HA changing how I entered values?
I have tried removing the double quotes from those values but the script throws an error on attempting to save:
![]()
How do I get the values that don’t work to work?
Here is the yaml for the entire script:
sequence:
- action: zha.issue_zigbee_cluster_command
data:
ieee: "{{ ieee }}"
endpoint_id: 11
cluster_id: 64515
command: 0
command_type: server
params:
data: "{{ hue_effect }}"
alias: Turn on Hue Effect
description: Turns on the chosen Hue Light with the selected effect.
icon: hue:festavia
fields:
ieee:
selector:
text: {}
hue_effect:
selector:
select:
options:
- label: Candle
value: "21000101"
- label: Fireplace
value: "21000102"
- label: Prism
value: "21000103"
- label: Sunrise
value: "21000109"
- label: Sparkle
value: 2100010a
- label: Opal
value: 2100010b
- label: Glisten
value: 2100010c
- label: Sunset
value: 2100010d
- label: Underwater
value: 2100010e
- label: Cosmos
value: 2100010f
- label: Sunbeam
value: "21000110"
- label: Enchant
value: "21000111"
mode: dropdown
custom_value: false