groups and scenes initial

This commit is contained in:
2025-11-13 21:29:04 +01:00
parent 4c5475e930
commit 5851414ba5
10 changed files with 1666 additions and 7 deletions

17
config/groups.yaml Normal file
View File

@@ -0,0 +1,17 @@
version: 1
groups:
- id: "kueche_lichter"
name: "Küche alle Lampen"
selector:
type: "light"
room: "Küche"
capabilities:
power: true
brightness: true
- id: "alles_lichter"
name: "Alle Lichter"
selector:
type: "light"
capabilities:
power: true

24
config/scenes.yaml Normal file
View File

@@ -0,0 +1,24 @@
version: 1
scenes:
- id: "alles_aus"
name: "Alles aus"
steps:
- selector: { type: "light" }
action:
type: "light"
payload: { power: "off" }
- selector: { type: "outlet" }
action:
type: "outlet"
payload: { power: "off" }
- id: "kueche_gemuetlich"
name: "Küche gemütlich"
steps:
- group_id: "kueche_lichter"
action:
type: "light"
payload:
power: "on"
brightness: 35