Update to the current version
Some checks failed
Savin's Home Assistant / build (push) Failing after 1m45s

This commit is contained in:
2025-05-11 16:06:31 -04:00
parent d45649f8b8
commit 26d86dec90
55 changed files with 10355 additions and 2245 deletions

View File

@ -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 }}'