Hey everyone,
I’m trying to make a switch on my lovelace dashboard to turn off all lights.
I created a group in my configuration.yaml and it looks like this:
discovery:
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
http:
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
ip_ban_enabled: true
login_attempts_threshold: 5
# Text to speech
tts:
- platform: google_translate
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
deconz:
host: ip-of-deconz
port: port-of-deconz
light:
- platform: group
name: "Alle Lampen"
entities:
- light.0x000d6ffffe06b484 #Kitchen2
- light.0x680ae2fffe47bf1b #Livingroom1
- light.0x680ae2fffe65c9f4 #Livingroom3
- light.0x680ae2fffe69fafd #Livingroom2
- light.0x84fd27fffe3a0e71 #Diningroom1
- light.0x84fd27fffe3b7206 #Diningroom2
- light.0xd0cf5efffef0697f #Kitchen1
- light.0xec1bbdfffe7f6929 #Bedroom
now I want to make a button on my dashboard which looks like this:
unfortunately this is not working. If I create buttons which turn on/off a single light then this is working without any problems.
What I’m doing wrong here?