HI, Just thought Id share how I created Off scenes in Hue Api and use these in HA:
which is just a fun way of representing
had this for a long time already:
group:
hue_light_control:
name: Hue Light Control
icon: mdi:spotlight
control: hidden
entities:
- input_select.hue_scenes
- input_select.hue_groups
- script.set_hue_scene
with 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')}}
using the default scenes in the Hue-hub/app. Unfortunately no Off scenes are available, so I had to make them manually. Reading the Api docs wasnât very clear on this, and following that exactly led to many errorsâŠ
with the help of Hue developers community and dev team, I finally made it. Duh, seems so simple when it all runs smoothly:
select a group youâd want to create a seen for
turn_off the lights (I want the Off scene)
check the hub ids of the lights in your group,
in the CLIP api debugger tool browse the path to scenes, enter
{
"name":"Off",
"lights":["15","4","2"],
"recycle":false}
and hit POST
after which you should see a command response succes.
You should immediately be able to use this newly created LightGroup, cause thatâs what they are. The Hue api automatically selects the appropriate group for this set of lights, which you can use in the hue.hue_activate_scene script.
Happing scening!
my tiles configuration for the above is:
homeassistant:
customize:
input_text.tiles_set_hue_scene:
custom_ui_state_card: state-card-tiles
config:
text_uppercase: false
columns: 6
# column_width: 50px #minmax(75px, 75px)
icon_size: 50px
row_height: 50px
entities:
- entity: script.tiles_set_hue_scene
label: Arctic
data: {option: 'Arctische dageraad'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Arctische dageraad') return '--tiles-text-color:black;background-size: contain;background-color: #00d0a0';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/arctic.png
- entity: script.tiles_set_hue_scene
label: Savanne
data: {option: 'Savanne zonsondergang'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Savanne zonsondergang') return '--tiles-text-color:black;background-size: contain;background-color: #ff7935';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/savanna.png
- entity: script.tiles_set_hue_scene
label: Tropisch
data: {option: 'Tropische schemering'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Tropische schemering') return '--tiles-text-color:black;background-size: contain;background-color: #a03aa3';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/tropical.png
- entity: script.tiles_set_hue_scene
label: Lente
data: {option: 'Lentebloesem'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Lentebloesem') return '--tiles-text-color:black;background-size: contain;background-color: #ba496c';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/spring.png
- entity: script.tiles_set_hue_scene
label: Relax
data: {option: 'Ontspannen'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Ontspannen') return '--tiles-text-color:black;background-size: contain;background-color: #ffc059';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/relax.png
- entity: script.tiles_set_hue_scene
label: Lezen
data: {option: 'Lezen'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Lezen') return '--tiles-text-color:black;background-size: contain;background-color: #fdfb9f';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/lezen.png
- entity: script.tiles_set_hue_scene
label: Concent
data: {option: 'Concentreren'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Concentreren') return '--tiles-text-color:black;background-size: contain;background-color: #a2eaf2';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/concentrate.png
- entity: script.tiles_set_hue_scene
label: Energie
data: {option: 'Energie'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Energie') return '--tiles-text-color:black;background-size: contain;background-color: #a8dfed';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/energize.png
- entity: script.tiles_set_hue_scene
label: Helder
data: {option: 'Helder'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Helder') return '--tiles-text-color:black;background-size: contain;background-color: #fcdb97';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/clear.png
- entity: script.tiles_set_hue_scene
label: Gedimd
data: {option: 'Gedimd'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Gedimd') return '--tiles-text-color:black;background-size: contain;background-color: #8c642b';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/dimmed.png
- entity: script.tiles_set_hue_scene
label: Nacht
data: {option: 'Nachtlampje'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Nachtlampje') return '--tiles-text-color:black;background-size: contain;background-color: #814346';
return '--tiles-text-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/nightlight.png
- entity: script.tiles_set_hue_scene
label: ' '
data: {option: 'Off'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Off') return '--tiles-text-color:grey;background-size: contain;background-color: lightgrey';
return '--tiles-text-color: black;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/off.png
group:
set_hue_scene_tiles:
name: 'Set Hue scene'
icon: mdi:lamp
entities:
- input_text.tiles_set_hue_scene
- input_select.hue_groups
- script.set_hue_scene
tiles_set_hue_scene:
name: Set Hue scene
for Lovelace:
cards:
- type: entities
title: Hue Light Control
show_header_toggle: false
entities:
# - input_select.hue_scenes
- !include /config/lovelace/tiles/tiles_input_select_scene.yaml
- input_select.hue_groups
- script.set_hue_scene
and:
# config/lovelace/tiles/tiles_input_select_scene.yaml
type: custom:tiles-card
legacy_config:
columns: 4
text_uppercase: false
# column_width: 50px #minmax(75px, 75px)
# icon_size: 50px
row_height: 50px
entities:
- entity: script.tiles_set_hue_scene
label: Arctic
data: {option: 'Arctische dageraad'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Arctische dageraad') return '--tiles-label-color: black;background-size: contain;background-color: #00d0a0';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/arctic.png
- entity: script.tiles_set_hue_scene
label: Savanne
data: {option: 'Savanne zonsondergang'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Savanne zonsondergang') return '--tiles-label-color: black;background-size: contain;background-color: #ff7935';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/savanna.png
- entity: script.tiles_set_hue_scene
label: Tropisch
data: {option: 'Tropische schemering'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Tropische schemering') return '--tiles-label-color: black;background-size: contain;background-color: #a03aa3';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/tropical.png
- entity: script.tiles_set_hue_scene
label: Lente
data: {option: 'Lentebloesem'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Lentebloesem') return '--tiles-label-color: black;background-size: contain;background-color: #ba496c';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/spring.png
- entity: script.tiles_set_hue_scene
label: Relax
data: {option: 'Ontspannen'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Ontspannen') return '--tiles-label-color: black;background-size: contain;background-color: #ffc059';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/relax.png
- entity: script.tiles_set_hue_scene
label: Lezen
data: {option: 'Lezen'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Lezen') return '--tiles-label-color: black;background-size: contain;background-color: #fdfb9f';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/lezen.png
- entity: script.tiles_set_hue_scene
label: Concent
data: {option: 'Concentreren'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Concentreren') return '--tiles-label-color: black;background-size: contain;background-color: #a2eaf2';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/concentrate.png
- entity: script.tiles_set_hue_scene
label: Energie
data: {option: 'Energie'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Energie') return '--tiles-label-color: black;background-size: contain;background-color: #a8dfed';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/energize.png
- entity: script.tiles_set_hue_scene
label: Helder
data: {option: 'Helder'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Helder') return '--tiles-label-color: black;background-size: contain;background-color: #fcdb97';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/clear.png
- entity: script.tiles_set_hue_scene
label: Gedimd
data: {option: 'Gedimd'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Gedimd') return '--tiles-label-color: black;background-size: contain;background-color: #8c642b';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/dimmed.png
- entity: script.tiles_set_hue_scene
label: Nacht
data: {option: 'Nachtlampje'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Nachtlampje') return '--tiles-label-color: black;background-size: contain;background-color: #814346';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/nightlight.png
- entity: script.tiles_set_hue_scene
label: ' '
data: {option: 'Off'}
style_template: >
if (entities['input_select.hue_scenes'].state === 'Off') return '--tiles-label-color: black;background-size: contain;background-color: lightgrey';
return '--tiles-label-color: grey;background-size: contain; background-color: #555B65';
image: /local/hue_scenes/off.png