Hello everyone, I have this configuration:
- alias: humidifier_on
trigger:
platform: numeric_state
entity_id: sensor.0x00158d0002b5b761_humidity
below: 52
condition:
- condition: numeric_state
entity_id: sensor.0x00158d0002b5b761_humidity
below: 52
- condition: state
entity_id: binary_sensor.0x00158d0003120f72_contact
state: 'off'
action:
- service: switch.turn_on
entity_id: switch.0x00158d00027cfe57_switch
##
- alias: humidifier_off
trigger:
platform: numeric_state
entity_id: sensor.0x00158d0002b5b761_humidity
above: 60
action:
- service: switch.turn_off
entity_id: switch.0x00158d00027cfe57_switch
The “humidifier_off” automation works, then the humidity drops below 52 and the “humidifier_on” automation doesn’t work. What could be wrong?