2024-06-02 00:17:49 +00:00
|
|
|
check_unavailable:
|
|
|
|
alias: '[INFO] Check unavailable devices'
|
|
|
|
sequence:
|
|
|
|
{% for entity in entities %}
|
|
|
|
- choose:
|
|
|
|
- conditions:
|
|
|
|
- condition: state
|
|
|
|
entity_id: {{ entity }}
|
|
|
|
state: unavailable
|
|
|
|
sequence:
|
|
|
|
- service: notify.home_assistant
|
|
|
|
data:
|
|
|
|
message: >
|
|
|
|
Device unavailable
|
2024-08-21 01:08:18 +00:00
|
|
|
{% raw %}{{ {% endraw %} device_attr('{{entity}}', 'name_by_user'){% raw %} }} ( {{ {% endraw %} device_attr('{{entity}}', 'name') {% raw %} }} ) {% endraw %}is unavailable
|
2024-06-02 00:17:49 +00:00
|
|
|
target: [ "1109936159951441960" ]
|
|
|
|
{% endfor %}
|