23 lines
577 B
Django/Jinja
23 lines
577 B
Django/Jinja
- 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 %}
|