mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-09-07 10:18:44 +00:00
22 lines
629 B
YAML
22 lines
629 B
YAML
automation:
|
|
- alias: Notification · Phone battery low
|
|
trigger:
|
|
platform: template
|
|
value_template: "{{ states('sensor.carbon_battery_level') | int < 10 }}"
|
|
condition:
|
|
condition: state
|
|
entity_id: sensor.carbon_battery_state
|
|
state: "Not Charging"
|
|
action:
|
|
service: script.say
|
|
data_template:
|
|
title: "❕*Notification Module*"
|
|
message: >-
|
|
|
|
{{
|
|
[
|
|
"Hey, just wanted to let you know your phone needs charging!",
|
|
"Hey, your phone is running low on battery, put it on the charger!"
|
|
] | random
|
|
}}
|