Automation not triggering on ti e

Hi, need something helper to Discovery what IS Mark ng this automation not to work, not even be triggered

lias: Dolly cortar hierba, otoño e invierno
description: otoño e invierno
triggers:
  - trigger: time
    at: "13:30:00"
conditions:
  - condition: and
    conditions:
      - condition: state
        entity_id: sensor.season
        state: autumn
      - condition: state
        entity_id: sensor.season
        state: winter
actions:
  - action: lawn_mower.start_mowing
    metadata: {}
    data: {}
    target:
      entity_id: lawn_mower.dolly
  - delay:
      hours: 3
      minutes: 30
      seconds: 0
      milliseconds: 0
    enabled: false
  - action: lawn_mower.start_mowing
    metadata: {}
    data: {}
    enabled: false
    target:
      device_id: 166d08dc13ba8f61e4d8b9cb39f74fb7

If i run It manually, the It works, but automatically It does not.

I have taken a look at the traces and seems to not having triggered ever.

How can a condition on season be : winter AND autumn :slight_smile: ? Try: OR

1 Like

Hahahahahahahahahhahahahha OMG you are totally right

Let me ask a question, when i go to traces, as you can see in the pic, the firsstep never happened, why IS that?

If that is from manual triggering then this is the cause I believe

1 Like

@graLf Try to avoid delays in the automation. If for some reason your HA goes down, lawn mower will never receive stop command.

Also do not use device_id in the automation.

1 Like

Thank you all.

Using entity will solve the problem? Isn’t it?