Hi all,
I’ve a problem with one of my automations, which is part 3 of a set of 4 automations to monitor my dishwasher and send an alert when its completed.
For some reason my step3 doesnt work, when I modify it and do a trace/debug on it , it shows the previous configuration. I’m editing it via the automation configurator in HA, not direct yaml.
When modifying and you hit ‘SAVE’ on an automation, do you need to go into configuration → settings → and restart automations ?
Or does HA automatically update the automation in question and it should execute when it next meets its triggers?
Here’s the actual automation code
id: '1607594115257'
alias: Dishwasher Step 3 - has finished - Clean
description: ''
trigger:
- platform: numeric_state
entity_id: sensor.dishwasher_current_consumption
attribute: current_power_w
for:
hours: 0
minutes: 1
seconds: 0
below: '4'
condition:
- condition: state
entity_id: input_select.dishwasher_status
state: Drying
action:
- service: script.sonos_say
data:
sonos_entity: media_player.office,media_player.portable_2,media_player.garage
volume: 0.4
message: The dishwasher has finished
delay: '00:00:05'
- service: input_select.select_option
data:
option: Clean
entity_id: input_select.dishwasher_status
- service: notify.notify
data:
message: Dishwasher finished - Everything Clean - Open me up please
title: Dishes Done
mode: single
I’m at a loss here, thanks in advance for any advice/assistance.