You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/community.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,26 @@ action:
88
88
mode: single
89
89
```
90
90
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
+
91
111
### Battery Replaced
92
112
Mark a battery as replaced when there is an increase in battery level.
0 commit comments