this post was submitted on 03 Jan 2024
11 points (100.0% liked)

homeassistant

11372 readers
23 users here now

Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. Available for free at home-assistant.io

founded 1 year ago
MODERATORS
 

Does anyone know if there are examples like this. I want to get a notification system in HA. It needs to be able to send the right notification at the right time on the right device.

For example, when the dishwasher is done, it sends a spoken notification to the nest hub in the kitchen, that is if the TV is on. If the TV is not on, but the computer is, it needs to send that notification to the computer room. At night it needs to hold the notifications and send them to the phone of the person that is the first to wake up. When we are not at home, we all get the notification on our phone. Also, when the dishwasher is emptied and the other person ticks the notification f.e.), and there's still a notification on a phone, it needs to disappear.

This is only one example, there are more things that can have a notification (another one could be a home greeting message), but it needs to be a system.

you are viewing a single comment's thread
view the rest of the comments
[–] padook@feddit.nl 4 points 7 months ago* (last edited 7 months ago) (2 children)

Should be able to just do it with automations and include "choose" action. 2024.1 looks like it makes it easier building blocks.

[–] Dianoga@lemm.ee 4 points 7 months ago* (last edited 7 months ago) (1 children)

This is the answer. I have a handful of notifications setup this way. My routing logic tends to be much simpler but that's what "choose" is for.

The only tricky one may be to hold the notifications until later. I probably wouldn't bother with that personally. Instead I use the do not disturb functionality on the phone.

https://companion.home-assistant.io/docs/notifications/actionable-notifications/

[–] TheOldRepublic@lemmy.world 1 points 7 months ago

Looks nice at first sight. I'll definitely check it out thoroughly. I think it's exactly what I need. Thanks.