mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-06-17 01:52:58 +00:00
72 lines
1.9 KiB
YAML
72 lines
1.9 KiB
YAML
input_boolean:
|
|
domestina:
|
|
name: Domestina time
|
|
icon: mdi:broom
|
|
|
|
group:
|
|
domestina_disabled_automations:
|
|
- automation.presence_arrival_detection
|
|
- automation.coming_home
|
|
- automation.leaving_work_to_home
|
|
- automation.leaving_home
|
|
- automation.enable_sleep_mode
|
|
- automation.disable_sleep_mode
|
|
- automation.sleep_toggle_on_switch_tap
|
|
- automation.music_pause_on_cube_knock
|
|
- automation.music_volume_down_on_cube_rotate_left
|
|
- automation.music_volume_up_on_cube_rotate_right
|
|
- automation.lighting_living_room_turn_on_cube_flip_90
|
|
- automation.lighting_living_room_turn_off_cube_flip_180
|
|
- automation.bedtime_toggle_on_master_bedroom_bedside_switch_hold
|
|
|
|
automation:
|
|
- id: domestina_automate_start
|
|
alias: Domestina · Automate start
|
|
trigger:
|
|
platform: time
|
|
at: "08:30:00"
|
|
condition:
|
|
- condition: time
|
|
weekday: thu
|
|
action:
|
|
- service: input_boolean.turn_on
|
|
entity_id: input_boolean.domestina
|
|
|
|
- id: domestina_start
|
|
alias: Domestina · Start
|
|
trigger:
|
|
platform: state
|
|
entity_id: input_boolean.domestina
|
|
from: "off"
|
|
to: "on"
|
|
action:
|
|
- service: input_boolean.turn_on
|
|
entity_id: input_boolean.guest_mode
|
|
- service: automation.turn_off
|
|
entity_id: group.domestina_disabled_automations
|
|
|
|
- id: domestina_automate_end
|
|
alias: Domestina · Automate end
|
|
trigger:
|
|
platform: time
|
|
at: "13:00:00"
|
|
condition:
|
|
- condition: time
|
|
weekday: thu
|
|
action:
|
|
- service: input_boolean.turn_off
|
|
entity_id: input_boolean.domestina
|
|
|
|
- id: domestina_end
|
|
alias: Domestina · End
|
|
trigger:
|
|
platform: state
|
|
entity_id: input_boolean.domestina
|
|
from: "on"
|
|
to: "off"
|
|
action:
|
|
- service: input_boolean.turn_off
|
|
entity_id: input_boolean.guest_mode
|
|
- service: automation.turn_on
|
|
entity_id: group.domestina_disabled_automations
|