Watts your appliance up to, youâre always in the know from start to finish!
New Features
Device Tracker - Home Assistant can track the location of your mobile devices using the built-in device tracker. If your devices are set up for location tracking and youâve defined one or more zones, you can enable this option to send notifications only to the devices youâve selected that are currently located within a selected zone.
Notification Icon - Android Only - This allows you to replace the default Home Assistant icon with one of your choice and set the colour for Start Notify, End Notify, or Watchdog.
If you like this blueprint? Consider hitting the button in the top post
If you like my blueprints, and would like to show your support or just say thank you? Click Here
What can I be looking at? My goal is get notified when the washing machine finishes. I just added start and stop on top now but have not yet tested it but as my energy sensor does work well I am not sure why i would even need thems.
alias: Lave Linge
description: ""
use_blueprint:
path: Blackshome/appliance-notifications.yaml
input:
power_sensor: sensor.lave_linge_energy
include_start_notify: disable_start_notify_options
start_message: DĂŠmarrage du lave linge
include_end_notify: enable_end_notify_options
end_message: La machine Ă laver le linge a fini!
end_reminder_notification_message: Il faudrait penser Ă sortir le ligne du lave linge :)
include_power_tracking: enable_power_tracking_and_cost
power_consumption_sensor: sensor.lave_linge_energy
include_watchdog: enable_watchdog
watchdog_timeframe:
hours: 3
minutes: 0
seconds: 0
watchdog_message: Le lave-linge n'a toujours pas fini, est-ce normal?
include_duration_tracking: enable_duration_tracking
end_message_kwh: Consommation
end_message_cost: CoĂťt âŹ
cost_per_kwh: sensor.lave_linge_energy
end_notify_device:
- d0fdeb47dca6f83e99a89d75f310be9c
- 5855e248efc5b64c699dadf27a59c8ea
end_message_title: Lave Linge
start_notify_device:
- d0fdeb47dca6f83e99a89d75f310be9c
- 5855e248efc5b64c699dadf27a59c8ea
start_title: Lave Linge
start_power_consumption: input_number.lave_linge_start
end_power_consumption: input_number.lave_linge_stop
watchdog_notify_device:
- d0fdeb47dca6f83e99a89d75f310be9c
- 5855e248efc5b64c699dadf27a59c8ea
watchdog_notify_data:
- icon
Youâre close⌠just a couple of inputs need to be adjusted.
Power Settings
Power Sensor: Youâve selected sensor.lave_linge_energy, but thatâs not the right entity here. This sensor reports total energy usage in kWh, not live power.
What you need instead is the sensor that shows the live power usage in watts. When the washing machine is running, this sensor will show the power fluctuating up and down in real time.
Energy Tracking Inputs
Energy Sensor: Youâve correctly used sensor.lave_linge_energy here⌠nice job!
Cost per kWh: Youâve also entered sensor.lave_linge_energy, which is incorrect.
For this input, you need to create a number helper that holds the cost of your electricity rate (per kWh).
Bad news as I donât plan to add an additional device just for that. As my device have a switch entity on/off and a select one with Running/Stopped I will use those to make a simple automation (maybe less realible).
any idea how I could use the clear_notification function without changing the blueprint?
I mean the notification tag is already there, and I would love to delete the start notify message when the end notify message is posted. But I donât know how as I can only add a tag for both.
Does this (wonderful, btw, thank you so much) automation support using AI LLMs to generate the notifications? I havenât messed with any of the LLM stuff yet, but Iâm thinking I might break it out so I stop getting the same notification every time my clothes are dry!
I keep my Home Assistant setup local and donât connect it to any AI, thatâs a big reason I use it. But I know others have made it work with custom actions.
@Blacky I totally get that⌠Iâm only curious about custom notification texts but Iâm not sure itâs worth allowing big AI into my machine, either.
Thanks so much for making great automation blueprints!
Iâm new to HA and started using your sensor light and this one which have been fantastic.
Apologies if this is posted elsewhere, but is it possible to make the âDevice Trackerâ check a zone at the start of a washing cycle to use for âEnd Notifyâ?
Iâd like to send âEnd Notifyâ to devices which were in the zone when the automation is first turned triggered, even if they are not in the zone when âEnd Notifyâ occurs.
(Use case: If I turn the washing on and go out shopping for a few hours, Iâd like to get the notification sent to me, but not sent to other people who have not been home all day).
Is there a way to get a Boolean (true/false) when the blueprint is started by a power entity without making making a special sensor? I would like to have an entity that is true between start and end.
I want to use it to monitor some rain pumps in my garden so it would be nice if you could add some watchdog that monitors the âpower sensorâ entityâs availability (unavailable, unknown) to detect possible power-loss and detect some overpowering with a threshold if the pump get stuck or something.
Welcome to the community and thanks for your kind words.
The only solution I can think of that might work is to replicate the blueprint for each person you want to receive notifications. That means: one automation per person.
In each automation, use the global condition to check whether that specific person is in the zone. If they are, theyâll receive both the start and end notifications. If theyâre not in the zone when the automation starts, it will stop immediately, and they wonât receive anything.
Yes, create a toggle helper to use as your boolean. Then use the custom actions for the start and end events. In the start custom action, turn the toggle ON, and in the end custom action, turn it OFF.