This automation tests the power of the smart outlet the washer is plugged into. For some reason the automation will never get to the notification line, if I include the “Test if Washer Outlet Power is below 2”. I’ve watched the power drop to 0, and still it does not proceed to the notification line.
If I omit the A/B test it works fine. But I thought I should add a check if the wattage had dropped below 2.
Any idea why the automation does not continue from the A/B test when the outlet power is 0?
-Thanks
alias: Washer Finished Entity
description: ""
triggers:
- trigger: numeric_state
entity_id:
- sensor.washer_outlet_power
for:
hours: 0
minutes: 2
seconds: 0
above: 3
conditions: []
actions:
- condition: numeric_state
entity_id: sensor.washer_outlet_power
below: 2
enabled: true
- action: notify.mobile_app_pixel_8
metadata: {}
data:
message: Washer completed at {{ now().strftime('%I:%M %p') }}
mode: single
