The following automation is not triggering correctly.
sensor.xi_temperature_humidity is above 70
input_number.airco_slaapkamer_humidity_high_threshold is set to 70
input_number.airco_slaapkamer_humidity_low_threshold is set to 61
Am I missing something here? Cheers
alias: 'Airco Slaapkamer Dry Auto '
description: ''
trigger:
- platform: numeric_state
entity_id: sensor.xi_temperature_humidity
above: input_number.airco_slaapkamer_humidity_high_threshold
- platform: numeric_state
entity_id: sensor.xi_temperature_humidity
below: input_number.airco_slaapkamer_humidity_low_threshold
condition: []
action:
- choose:
- conditions:
- condition: numeric_state
entity_id: sensor.xi_temperature_humidity
above: input_number.airco_slaapkamer_humidity_high_threshold
- condition: state
entity_id: climate.airco_slaapkamer
state: 'off'
- condition: or
conditions:
- condition: time
after: '06:30'
before: '22:00'
- condition: numeric_state
entity_id: sensor.xi_temperature_humidity
above: '79'
sequence:
- service: climate.set_hvac_mode
target:
entity_id: climate.airco_slaapkamer
data:
hvac_mode: dry
- conditions:
- condition: numeric_state
entity_id: sensor.xi_temperature_humidity
below: input_number.airco_slaapkamer_humidity_low_threshold
- condition: state
entity_id: climate.airco_slaapkamer
state: dry
sequence:
- service: climate.set_hvac_mode
data:
hvac_mode: 'off'
target:
entity_id: climate.airco_slaapkamer
default: []
mode: single