Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save migsun/86a2e2ecffdc71fdb230d61766706afd to your computer and use it in GitHub Desktop.
Save migsun/86a2e2ecffdc71fdb230d61766706afd to your computer and use it in GitHub Desktop.
high-humidity-level-detection-notification-for-all-humidity-sensors -- Thx to sbyx
blueprint:
name: high humidity level detection & notification for all huminity sensors
description: Regularly test all sensors with 'humidity' device-class for crossing
a certain humidity level threshold and if so execute an action.
domain: automation
input:
threshold:
name: Humidity warning level threshold
description: Humidity sensors threshold.
default: 65
selector:
number:
min: 5.0
max: 100.0
unit_of_measurement: '%'
mode: slider
step: 5.0
time:
name: Time to test on
description: Test is run at configured time
default: '10:00:00'
selector:
time: {}
day:
name: Weekday to test on
description: 'Test is run at configured time either everyday (0) or on a given
weekday (1: Monday ... 7: Sunday)'
default: 0
selector:
number:
min: 0.0
max: 7.0
mode: slider
step: 1.0
exclude:
name: Excluded Sensors
description: Humidity sensors to exclude from detection.
default:
entity_id: []
selector:
target:
entity:
device_class: humidity
actions:
name: Actions
description: Notifications or similar to be run. {{sensors}} is replaced with
the names of sensors with high humidity.
selector:
action: {}
source_url: https://gist.github.com/migsun/86a2e2ecffdc71fdb230d61766706afd
variables:
day: !input day
threshold: !input threshold
exclude: !input exclude
sensors: "{% set result = namespace(sensors=[]) %} {% for state in states.sensor
| selectattr('attributes.device_class', '==', 'humidity') %}\n {% if 0 <= state.state
| int(-1) > threshold | int and not state.entity_id in exclude.entity_id %}\n
\ {% set result.sensors = result.sensors + [state.name ~ ' (' ~ state.state
~ ' %)'] %}\n {% endif %}\n{% endfor %} {% for state in states.binary_sensor
| selectattr('attributes.device_class', '==', 'humidity') | selectattr('state',
'==', 'on') %}\n {% if not state.entity_id in exclude.entity_id %}\n {% set
result.sensors = result.sensors + [state.name] %}\n {% endif %}\n{% endfor %}
{{result.sensors|join('\n') }}"
trigger:
- platform: time
at: !input time
condition:
- '{{ sensors != '''' and (day | int == 0 or day | int == now().isoweekday()) }}'
action:
- choose: []
default: !input actions
mode: single
@Kemden
Copy link

Kemden commented Apr 25, 2023

Hi mate, can u Change it to run parmanent and not at a set time? Would ne lovely

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment