23 lines
577 B
Plaintext
23 lines
577 B
Plaintext
|
- id: info_low_battery
|
||
|
alias: '[INFO] Low battery'
|
||
|
mode: single
|
||
|
trigger:
|
||
|
- platform: numeric_state
|
||
|
below: 20
|
||
|
entity_id:
|
||
|
{% for entity in entities %}
|
||
|
- {{ entity }}
|
||
|
{% endfor %}
|
||
|
- platform: numeric_state
|
||
|
below: 10
|
||
|
entity_id:
|
||
|
{% for entity in entities %}
|
||
|
- {{ entity }}
|
||
|
{% endfor %}
|
||
|
action:
|
||
|
- service: notify.mobile_app_iphone
|
||
|
data:
|
||
|
title: "Low battery"
|
||
|
message: >
|
||
|
{% raw %}{{ state_attr(trigger.entity_id, 'name_by_user') }} has low battery {{ states(trigger.entity_id }}% {% endraw %}
|