I want to turn my ventilation on when the humidity in the bathroom reaches a certain value.
For now I have this, but it doesn’t trigger.
Can someone help me out?
- id: '11'
alias: Douche ventillatie
trigger:
- platform: numeric_state
entity_id: sensor.humidity_158d00036b666c
above: 72
action:
- data:
entity_id: light.ventillatie_badkamer
service: light.turn_on
- id: '12'
alias: Douche ventillatie uit
trigger:
- below: 71
entity_id: sensor.humidity_158d00036b666c
platform: numeric_state
action:
- data:
entity_id: light.ventillatie_badkamer
service: light.turn_off