1
0
ansible-home-assistant/configuration/automations/bedroom-humidifier.yaml

35 lines
943 B
YAML
Raw Normal View History

2020-12-06 20:46:37 +00:00
- id: humidifier_on
2021-01-07 00:48:14 +00:00
alias: '[Bedroom] Turn on humidifier'
2020-11-21 03:28:38 +00:00
trigger:
- platform: numeric_state
2021-11-06 18:43:05 +00:00
entity_id: sensor.bedroom_air_purifier_humidity
2020-12-06 20:46:37 +00:00
below: '45'
- platform: state
entity_id: binary_sensor.bedroom_window_open_close
2021-01-23 14:24:41 +00:00
to: 'off'
condition:
- condition: state
entity_id: binary_sensor.bedroom_window_open_close
2021-01-23 14:24:41 +00:00
state: 'off'
- condition: numeric_state
2021-11-06 18:43:05 +00:00
entity_id: sensor.bedroom_air_purifier_humidity
below: '45'
2020-11-21 03:28:38 +00:00
action:
2020-12-06 20:46:37 +00:00
- service: switch.turn_on
entity_id: switch.humidifier_plug
mode: single
- id: humidifier_off
2021-01-07 00:48:14 +00:00
alias: '[Bedroom] Turn on humidifier'
2020-12-06 20:46:37 +00:00
trigger:
- platform: numeric_state
2021-11-06 18:43:05 +00:00
entity_id: sensor.bedroom_air_purifier_humidity
above: '55'
- platform: state
entity_id: binary_sensor.bedroom_window_open_close
2021-01-23 14:24:41 +00:00
to: 'on'
2020-12-06 20:46:37 +00:00
action:
- service: switch.turn_off
entity_id: switch.humidifier_plug
2020-11-21 03:28:38 +00:00
mode: single