Hello,
I’ve been figuring out HA just fine for a while now, but after spending a while on this problem I could really use some help.
The two of us have a kitten whose litter box must be scooped daily. We both use the companion app. My idea was to place an NFC tag by the litter box so whoever cleans it can then tap the tag. If neither of us have tapped the tag by, say, 5pm, an alert will start sending increasingly more frequent notifications to both phones until someone does.
I’m stuck on setting up the conditions - making the alert such that it only fires after 5pm and setting the alert back to idle after the tag is tapped. I also am unsure if I have the mobile app notifiers configured properly. This is what I have so far:
alert:
litter_box:
name: Litter Box is Unscooped
done_message: Litter Box is Scooped
entity_id: input_boolean.litterbox
state: "on"
repeat:
- 120
- 60
- 30
can_acknowledge: true
skip_first: false
notifiers:
- notify.mobile_app_01234567...
- notify.mobile_app_89abcdef...
Is an alert even the best way to do this? Would this be better done through an automation?
Thanks in advance for your help!