1
0
ansible-home-assistant/configuration/automations/hallway-doorbell.yaml

58 lines
1.7 KiB
YAML
Raw Normal View History

2021-05-11 18:34:52 +00:00
- id: hallway-doorbell
alias: '[Hallway] Doorbell'
mode: restart
trigger:
- platform: state
entity_id: switch.doorbell_button_switch
from: 'off'
to: 'on'
action:
- service: notify.notify
data:
message: "Doorbell"
- choose:
- conditions:
- condition: state
entity_id: input_boolean.mute_doorbell
state: 'off'
sequence:
- service: switch.turn_on
target:
entity_id: switch.doorbell_bell
- service: switch.turn_off
target:
entity_id: switch.doorbell_bell
- service: script.pause_all_players
2021-05-11 18:34:52 +00:00
- service: light.turn_on
data:
effect: Police
entity_id: light.desk_lightbar_ambilight
- service: zwave.set_config_parameter
data:
node_id: 12
parameter: 7
value: 'Door bell music'
- service: switch.turn_on
entity_id: switch.siren_switch
2021-05-25 15:08:20 +00:00
- delay:
milliseconds: 30
2021-05-11 18:34:52 +00:00
- service: light.turn_on
data:
hs_color: [ 240,100 ]
entity_id: light.desk_lightbar_ambilight
- delay: '1'
- service: light.turn_off
entity_id: light.desk_lightbar_ambilight
- id: hallway-doorbell-bell-burn-prevention
alias: '[Hallway] Doorbell bell burn prevention'
mode: restart
trigger:
- platform: state
entity_id: switch.doorbell_bell
from: 'off'
to: 'on'
action:
- delay: '1'
- service: switch.turn_off
entity_id: switch.doorbell_bell