Last active
November 21, 2023 20:42
-
-
Save robbielane/51ab1d655e8925c5c2048ea04594103a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Appliance has finished shaking | |
description: Do something when an appliance (like a washing machine or dishwasher) | |
has finished as detected by a vibration sensor. | |
domain: automation | |
input: | |
vibration_sensor: | |
name: Vibration Sensor | |
description: 'Vibration sensor entity (e.g. Aqara lumi.vibration.aq1 | |
by LUMI vibration sensor). Needs to have device_class: | |
vibration' | |
selector: | |
entity: | |
domain: binary_sensor | |
starting_hysteresis: | |
name: Starting hysteresis | |
description: Time duration the sensor has to stay on. | |
default: 5 | |
selector: | |
number: | |
min: 1.0 | |
max: 60.0 | |
unit_of_measurement: min | |
mode: slider | |
step: 1.0 | |
finishing_hysteresis: | |
name: Finishing hysteresis | |
description: Time duration the sensor has to stay off. | |
default: 5 | |
selector: | |
number: | |
min: 1.0 | |
max: 60.0 | |
unit_of_measurement: min | |
mode: slider | |
step: 1.0 | |
actions: | |
name: Actions | |
description: Actions (e.g. pushing a notification, TTS announcement, ...) | |
selector: | |
action: {} | |
trigger: | |
- platform: state | |
entity_id: !input 'vibration_sensor' | |
to: 'on' | |
for: | |
minutes: !input 'starting_hysteresis' | |
condition: [] | |
action: | |
- wait_for_trigger: | |
- platform: state | |
entity_id: !input 'vibration_sensor' | |
to: 'off' | |
for: | |
minutes: !input 'finishing_hysteresis' | |
- choose: [] | |
default: !input 'actions' | |
mode: single | |
max_exceeded: silent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment