Skip to content

Commit a064669

Browse files
Add a weekly example
1 parent 262e4be commit a064669

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/community.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,26 @@ action:
8888
mode: single
8989
```
9090
91+
### Check Battery Low weekly reminder
92+
Weekly reminders are a little trickier, you will need to create a [Schedule Helper](https://www.home-assistant.io/integrations/schedule/) for when you want the battery check to occur then use this automation for when the helper is on.
93+
Below I am referencing a schedule helper called maintenance which I have set to come on weekly.
94+
To be used in conjunction with a [Battery Low Notification](community.md/#battery-low-notification) or similar.
95+
96+
```yaml
97+
alias: Battery Low Check
98+
description: Check whether a battery is low
99+
trigger:
100+
- platform: state
101+
entity_id:
102+
- schedule.maintenance
103+
to: "on"
104+
condition: []
105+
action:
106+
- service: battery_notes.check_battery_low
107+
data: {}
108+
mode: single
109+
```
110+
91111
### Battery Replaced
92112
Mark a battery as replaced when there is an increase in battery level.
93113

0 commit comments

Comments
 (0)