For the life of me..... not is_state

My dishwasher runs an automation which includes the last step of setting the input_select.dishwasher_status state to “empty-waiting”

I need a next automation that will run - but I need the condition to not trigger if the state is empty-waiting.

I really can’t figure out how to add a condition that is “state is not empty-waiting”

Thanks in advance.

Can you not use:

platform: state
entity_id: input_select.dishwasher_status
from: empty-waiting

as an trigger?

state is empty-waiting == false ???

Conditions don‘t trigger. But there is a NOT condition, that can prevent an automation from performing an action.

1 Like