Attribute Value Less Than X for Y Mins

There is a community app that will do this without rule machine. Search for "Better Laundry Monitor". It has the options to count the cycles like you want.

Otherwise maybe use private boolean? I have a similar example in another thread but the short version is:

Trigger: Washing Machine Outlet CHANGED
Action:

  • IF power level of washing machine > 10
  • THEN set private boolean to TRUE
  • ELSE IF power level of washing machine < 0.5
  • THEN set private boolean to FALSE
  • END IF

I did this in a separate rule first, then gave the second rule permission to use this private boolean output. You would probably want to add some delays (I think immediately after the first THEN?) , that would take care of most of the cycling.

Couple links that may help. The first is my private boolean rule, the second link explains the delays and cancels better than I can.