1
0
ansible-home-assistant/automations/files/bedroom-humidifier.yaml
Przemek Grondek 11d3512b2a Housekeeping
use light groups instead of multiple lights
 add prefix to some automations
 rename some files
2021-01-23 19:32:51 +01: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