arretx
(Jon Griffith)
July 13, 2021, 4:30pm
1
Let’s say the following happens:
I turn on the shower. My thermocouple senses a change in water temperature. As a result, HA asks me if I would like a specific playlist, or a random playlist. I respond. Music plays.
Maybe possible with this ?
jcasarini
(Joaquin Casarini)
July 13, 2021, 9:04pm
3
Could also be accomplished with an actionable notification sent to your phone by an automation triggered by the thermocouple.
Take a look at these:
General:
Platform specific:
This Blueprint helps you send actionable notifications to your Android device.
[actionable_notification_example2]
Requirements
Home Assistant app on your device
An input_boolean which will trigger the automation
Notes
The input_boolean can be created on the UI, navigate to Configuration->Helpers click Add helper and select Toggle. You can use the input_boolean.turn_on service to trigger this automation. The automation will turn off the boolean after it is triggered.
You can add up to 3 act…
Also another post about this:
Hello,
I am trying to find a real life example of actionnable notification to (for example) switch off light from an actionable notification if it’s turned on for too long.
So far I have this:
service: Notifications: Send a notification via mobile_app_iphone (I use the grahpical automation builder inside HA)
And in data, I have this:
actions:
- action: SERVICE
title: Switch off the light
data:
service: light.toggle
entity_id: light.somerandomid
But that won’t do anyth…