Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- alias: Regen melding en raam open
- description: Notificatie als het binnen 15 min gaat regenen en er staat een raam open
- trigger:
- - platform: numeric_state
- entity_id: sensor.buienradar_precipitation_forecast_total
- above: '0'
- condition:
- - condition: state
- entity_id: group.hometracking
- state: home
- - condition: time
- after: '7:30'
- before: '23:30'
- - condition: or
- conditions:
- - condition: state
- entity_id: binary_sensor.slaap_kamer_raam
- state: 'on'
- - condition: state
- entity_id: binary_sensor.zolder_raam
- state: 'on'
- action:
- - variables:
- bericht: |
- {% if is_state('binary_sensor.slaap_kamer_raam', 'on') %}
- {% if is_state('binary_sensor.zolder_raam', 'on') %}
- Het gaat binnen een kwartier: {{ states("sensor.buienradar_precipitation_forecast_total") }}mm/h regenen, het slaapkamer raam en het zolder raam staan nog open
- {% elif is_state('binary_sensor.zolder_raam', 'off') %}
- Het gaat binnen een kwartier: {{ states("sensor.buienradar_precipitation_forecast_total") }}mm/h regenen en het slaapkamer raam staat nog open
- {% endif %}
- {% elif is_state('binary_sensor.slaap_kamer_raam', 'off') %}
- {% if is_state('binary_sensor.zolder_raam', 'on') %}
- Het gaat binnen een kwartier: {{ states("sensor.buienradar_precipitation_forecast_total") }}mm/h regenen en het zolder raam staat nog open
- {% endif %}
- {% endif %}
- - data_template:
- message: '{{ bericht }}'
- title: '{{ "\uD83C\uDF27" }} Voorspeld'
- service: notify.notify
- mode: single
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement