Hi.
Would love if anyone got an idea regarding an automation that stopped working in the recent weeks - maybe due to one of the latest releases. I’m no on 2022.8.7.
I have an automation that is triggered by a zigbee button and turn on my boiler. It sets an input select to on and then there is a node red automation that keeps the boiler in a specific temperature. This works well.
alias: Boiler on for 30 minutes
description: ""
trigger:
- platform: mqtt
topic: zigbee2mqtt/0x00158d00023e4350
condition:
- condition: template
value_template: "{{ \"single\" == trigger.payload_json.click }}"
action:
- service: input_select.select_option
data:
option: "On"
target:
entity_id: input_select.boiler_state
- service: input_boolean.turn_on
data: {}
entity_id: input_boolean.boiler_manual
mode: single
I have another automation that should be triggered 30 minutes after the first one and set the boiler back to auto mode. It used to work well, but now it is not triggered.
alias: Boiler off after 30 minutes
description: ""
trigger:
- platform: state
entity_id:
- input_boolean.boiler_manual
to: "On"
for:
hours: 0
minutes: 30
seconds: 0
condition: []
action:
- service: input_boolean.turn_off
data: {}
target:
entity_id: input_boolean.boiler_manual
- service: input_select.select_option
data:
option: Auto
target:
entity_id: input_select.boiler_state
mode: single
If I look at the logs, I can see that the first automation is triggered, but the second never triggers (I set the time to 3 minutes for testing):
Can anyone help me debug this?
Thanks,
Yaron