HI,
trying to add Off to my hue.hue_activate_scene I realized this isn’t a group scene. Checking the Hue Api Ive found 1 scene Off, but it is a lightscene:
{"name":"Off","type":"LightScene","lights":["1","2","3","4","5","6","8","9"],
Could this be used in any way, or would we need a feature request for the Hue dev team to add that to the available services? Would be really very nice to add that in a script like this:
input_select:
hue_scenes:
name: Select Hue Scenes
icon: mdi:creation
options:
- Arctische dageraad
- Savanne zonsondergang
- Tropische schemering
- Lentebloesem
- Concentreren
- Gedimd
- Energie
- Helder
- Lezen
- Nachtlampje
- Ontspannen
- 'Off'
initial: Ontspannen
and script:
script:
set_hue_scene:
alias: Set Hue scene
sequence:
service: hue.hue_activate_scene
data_template:
group_name: >
{{ states('input_select.hue_groups')}}
scene_name: >
{{ states('input_select.hue_scenes')}}