31 lines
867 B
YAML
31 lines
867 B
YAML
# This file will be for various Apple-related automations, scripts, and other needs
|
|
|
|
automation:
|
|
- id: f4b16032-34f2-4446-bddd-ea22cb32b12f
|
|
alias: Apple Watch Actions
|
|
trigger:
|
|
- platform: event
|
|
event_type: ios.action_fired
|
|
event_data:
|
|
actionName: manual-night
|
|
id: manual-night
|
|
- platform: event
|
|
event_type: ios.action_fired
|
|
event_data:
|
|
actionName: manual-day
|
|
id: manual-day
|
|
action:
|
|
- if:
|
|
- condition: trigger
|
|
id: manual-night
|
|
then:
|
|
- service: button.press
|
|
target:
|
|
entity_id: button.master_bedroom_night_mode
|
|
- if:
|
|
- condition: trigger
|
|
id: manual-day
|
|
then:
|
|
- service: button.press
|
|
target:
|
|
entity_id: button.master_bedroom_day_mode |