- configuration.yaml (main HA config) - ui-lovelace.yaml (dashboard with System Admin view) - automations.yaml - scripts.yaml 🤖 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
799 B
YAML
40 lines
799 B
YAML
# Example automations for Govee lights
|
|
- id: '1'
|
|
alias: Good Morning Lights
|
|
description: Turn on lights bright in the morning
|
|
trigger:
|
|
- platform: time
|
|
at: '07:00:00'
|
|
condition: []
|
|
action:
|
|
- service: scene.turn_on
|
|
target:
|
|
entity_id: scene.bright
|
|
mode: single
|
|
|
|
- id: '2'
|
|
alias: Good Night Lights
|
|
description: Turn off lights at night
|
|
trigger:
|
|
- platform: time
|
|
at: '23:00:00'
|
|
condition: []
|
|
action:
|
|
- service: scene.turn_on
|
|
target:
|
|
entity_id: scene.all_off
|
|
mode: single
|
|
|
|
- id: '3'
|
|
alias: Movie Mode at Sunset
|
|
description: Dim lights when sun sets
|
|
trigger:
|
|
- platform: sun
|
|
event: sunset
|
|
condition: []
|
|
action:
|
|
- service: scene.turn_on
|
|
target:
|
|
entity_id: scene.movie_time
|
|
mode: single
|