Update to the current version
Some checks failed
Savin's Home Assistant / build (push) Failing after 1m45s
Some checks failed
Savin's Home Assistant / build (push) Failing after 1m45s
This commit is contained in:
@ -0,0 +1,45 @@
|
||||
---
|
||||
- id: notification_washer_changed_status
|
||||
alias: '[Notification] Washer changed status'
|
||||
initial_state: 'true'
|
||||
trigger:
|
||||
platform: state
|
||||
entity_id: sensor.washtower_washer_current_status
|
||||
action:
|
||||
- service: telegram_bot.send_message
|
||||
data:
|
||||
target: "-1002338954143"
|
||||
message_thread_id: 4
|
||||
message_tag: kitchen_appliances
|
||||
title: "[Home Assistant] Laundry is finished"
|
||||
message: 'Washer changes status to {{ trigger.to_state.state }}'
|
||||
|
||||
- id: notification_dryer_changed_status
|
||||
alias: '[Notification] Dryer changed status'
|
||||
initial_state: 'true'
|
||||
trigger:
|
||||
platform: state
|
||||
entity_id: sensor.washtower_dryer_current_status
|
||||
action:
|
||||
- service: telegram_bot.send_message
|
||||
data:
|
||||
target: "-1002338954143"
|
||||
message_thread_id: 4
|
||||
message_tag: kitchen_appliances
|
||||
title: "[Home Assistant] Dryer changed status"
|
||||
message: 'Dryer changes status to {{ trigger.to_state.state }}'
|
||||
|
||||
- id: notification_dishwasher_changed_status
|
||||
alias: '[Notification] Dishwasher changed status'
|
||||
initial_state: 'true'
|
||||
trigger:
|
||||
platform: state
|
||||
entity_id: sensor.dishwasher_current_status
|
||||
action:
|
||||
- service: telegram_bot.send_message
|
||||
data:
|
||||
target: "-1002338954143"
|
||||
message_thread_id: 4
|
||||
message_tag: kitchen_appliances
|
||||
title: "[Home Assistant] Dishwasher changed status"
|
||||
message: 'Dishwasher changes status to {{ trigger.to_state.state }}'
|
Reference in New Issue
Block a user