I’m really stuck at this one and I can’t seem to find an answer.
I currently have this interface with lovelace:
I would like to have some activation buttons for scenes with my lights. As you can see the “Random group” card shows “Entity not available: scene.beneden_normaal”.
I defined the scenes as follows inside the configuration.yaml file:
# Scenes
scene:
- name: beneden_normaal
entities:
light.hue_ambiance_spot_1:
state: true
brightness: 200
light.hue_ambiance_spot_2:
state: true
brightness: 200
light.hue_color_lamp_1:
state: true
xy_color: [0.296, 0.606]
brightness: 155
light.hue_color_lamp_2:
state: true
xy_color: [0.334, 0.211]
brightness: 99
light.hue_color_lamp_3:
state: true
xy_color: [0.592, 0.381]
brightness: 236
- name: beneden_film
entities:
light.hue_ambiance_spot_1:
state: true
brightness: 200
light.hue_ambiance_spot_2:
state: true
brightness: 200
light.hue_color_lamp_1:
state: true
xy_color: [0.296, 0.606]
brightness: 155
light.hue_color_lamp_2:
state: true
xy_color: [0.334, 0.211]
brightness: 99
light.hue_color_lamp_3:
state: true
xy_color: [0.592, 0.381]
brightness: 236
The card contains the following setup:
type: entities
entities:
- scene.beneden_normaal
title: Random group
show_header_toggle: false
What am I doing wrong?