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

24 lines
567 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
entity_id: sensor.ble_humidity_bedroom_sensor
2020-12-06 20:46:37 +00:00
below: '45'
2020-11-21 03:28:38 +00:00
condition: []
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
entity_id: sensor.ble_humidity_bedroom_sensor
above: '50'
condition: []
action:
- service: switch.turn_off
entity_id: switch.humidifier_plug
2020-11-21 03:28:38 +00:00
mode: single