1
0

Add vacuum automations

This commit is contained in:
pgrondek 2020-11-08 15:55:37 +01:00
parent 285e901087
commit d43b9a1797

View File

@ -0,0 +1,27 @@
- id: vacuum_leave
alias: '[Vaccum] Clean after leaving home'
trigger:
- platform: geo_location
source: sensor.sm_g965f_geocoded_location
zone: zone.home
event: leave
condition: []
action:
- service: vacuum.turn_on
data: {}
entity_id: vacuum.robot_vacuum
mode: single
- id: vacuum_arive
alias: '[Vaccum] Stop cleaning after arrival'
trigger:
- platform: geo_location
source: sensor.sm_g965f_geocoded_location
zone: zone.home
event: enter
condition: []
action:
- service: vacuum.turn_off
data: {}
entity_id: vacuum.robot_vacuum
mode: single