55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
alias: Zirkulation V5
|
|
id: "2d05fdae-3d55-4383-9792-d3ef8b7ffa2a"
|
|
description: Uhrzeit Zirkulationspumpe schalten
|
|
trigger:
|
|
- platform: time
|
|
at: "11:00:00"
|
|
id: id_stop
|
|
- platform: time
|
|
at: "12:00:00"
|
|
id: id_start
|
|
- platform: time
|
|
at: "14:00:00"
|
|
id: id_stop
|
|
- platform: time
|
|
at: "15:00:00"
|
|
id: id_start
|
|
- platform: time
|
|
at: "22:00:00"
|
|
id: id_stop
|
|
- platform: time
|
|
at: "05:00:00"
|
|
id: id_start
|
|
condition: []
|
|
action:
|
|
- choose:
|
|
- conditions:
|
|
- condition: trigger
|
|
id:
|
|
- id_start
|
|
sequence:
|
|
- service: notify.dev_telegram
|
|
metadata: {}
|
|
data:
|
|
message: Zirkulation wird gestartet
|
|
- service: switch.turn_on
|
|
data: {}
|
|
target:
|
|
entity_id: switch.smart_switch_7_zirkulationspumpe_2
|
|
|
|
- conditions:
|
|
- condition: trigger
|
|
id:
|
|
- id_stop
|
|
sequence:
|
|
- service: notify.dev_telegram
|
|
metadata: {}
|
|
data:
|
|
message: Zirkulation wird gestoppt
|
|
- service: switch.turn_off
|
|
data: {}
|
|
target:
|
|
entity_id: switch.smart_switch_7_zirkulationspumpe_2
|
|
|
|
mode: single
|