I have had a bathroom fan automation which I made that has worked for years. IT has suddenly stopped working during the last couple of updates. All my sensors are working and my humidity rising is triggering to on yet the automation no longer runs. I can switch the fan on manually by running the automation trigger. At the moment I cannot see why it would no longer run automatically ???
Anyone see anything in my automation that has maybe changed in the last few updates ???
# Bathroom Fan Automations
# Auto on
- alias: "Bathroom Fan auto on - Switch off"
trigger:
- platform: state
entity_id: binary_sensor.bathroom_humidity_rising
from: "off"
to: "on"
condition:
- condition: state
entity_id: input_boolean.bathroom_fan_dummy
state: "off"
action:
- service: switch.turn_on
entity_id: switch.lightwaverf_siemens_f296b3_7
- service: input_boolean.turn_on
entity_id: input_boolean.bathroom_fan_auto
- alias: "Bathroom Fan auto on - Switch On"
trigger:
- platform: state
entity_id: binary_sensor.bathroom_humidity_rising
from: "off"
to: "on"
condition:
- condition: state
entity_id: input_boolean.bathroom_fan_dummy
state: "on"
action:
- service: input_boolean.turn_on
entity_id: input_boolean.bathroom_fan_auto
# Auto off
- alias: "Bathroom Fan auto off - Switch off"
trigger:
- platform: state
entity_id: binary_sensor.bathroom_humidity_falling
from: "off"
to: "on"
condition:
- condition: state
entity_id: input_boolean.bathroom_fan_dummy
state: "off"
action:
- service: switch.turn_off
entity_id: switch.lightwaverf_siemens_f296b3_7
- service: input_boolean.turn_off
entity_id: input_boolean.bathroom_fan_auto
- alias: "Bathroom Fan auto off - Switch on"
trigger:
- platform: state
entity_id: binary_sensor.bathroom_humidity_falling
from: "off"
to: "on"
condition:
- condition: state
entity_id: input_boolean.bathroom_fan_dummy
state: "on"
action:
- service: input_boolean.turn_off
entity_id: input_boolean.bathroom_fan_auto
# Manual on / off
- alias: "Bathroom Fan on"
trigger:
- platform: state
entity_id: input_boolean.bathroom_fan_dummy
from: "off"
to: "on"
action:
- service: switch.turn_on
entity_id: switch.lightwaverf_siemens_f296b3_7
- alias: "Bathroom Fan off"
trigger:
- platform: state
entity_id: input_boolean.bathroom_fan_dummy
from: "on"
to: "off"
condition:
- condition: state
entity_id: input_boolean.bathroom_fan_auto
state: "off"
action:
- service: switch.turn_off
entity_id: switch.lightwaverf_siemens_f296b3_7