1
0
ansible-home-assistant/automations/bedroom-humidifier.yaml
2021-05-24 20:26:03 +02:00

35 lines
937 B
YAML

- id: humidifier_on
alias: '[Bedroom] Turn on humidifier'
trigger:
- platform: numeric_state
entity_id: sensor.ble_humidity_bedroom_sensor
below: '45'
- platform: state
entity_id: binary_sensor.bedroom_window_open_close
to: 'off'
condition:
- condition: state
entity_id: binary_sensor.bedroom_window_open_close
state: 'off'
- condition: numeric_state
entity_id: sensor.ble_humidity_bedroom_sensor
below: '45'
action:
- service: switch.turn_on
entity_id: switch.humidifier_plug
mode: single
- id: humidifier_off
alias: '[Bedroom] Turn on humidifier'
trigger:
- platform: numeric_state
entity_id: sensor.ble_humidity_bedroom_sensor
above: '50'
- platform: state
entity_id: binary_sensor.bedroom_window_open_close
to: 'on'
action:
- service: switch.turn_off
entity_id: switch.humidifier_plug
mode: single