Washing Machine automation not working

I had this working through Node Red, but I’m starting to hate it because I feel like it’s so complex compared to the automations within HA. However, I can’t get this to work for the life of me:

  • id: ‘1543345249124’
    alias: Washing Machine
    trigger:
    • entity_id: sensor.washing_machine_idle
      for: 00:03:00
      from: ‘false’
      platform: state
      to: ‘true’
      condition: []
      action:
    • data:
      message: The Washing Machine is Finished.
      service: notify.pushover

I have “sensor.washing_machine_idle” set to “true” if the watts are under 1.8, as it sits at 1.54 while idle.

Can you please format the code properly so people can see if it’s spaced properly.

sorry - it should be, as I used the GUI to create the automation. ha1

Try with True and False instead of true and false - maybe leave out the from line completely.

Thanks! I believe changing it to “True” and “False” fixed it. Seems that it’s case sensitive.