Advertisement
abeksis

Untitled

May 20th, 2018
1,440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. automation:
  2. - alias: Start Daily Vacuum
  3. trigger:
  4. - platform: state
  5. entity_id: group.family
  6. from: 'home'
  7. to: 'not_home'
  8. for:
  9. minutes: 2
  10. - platform: time
  11. at: '7:02:00'
  12. condition:
  13. condition: and
  14. conditions:
  15. - condition: state
  16. entity_id: input_boolean.daily_vacuum_first_run
  17. state: 'off'
  18. - condition: time
  19. after: '07:00:00'
  20. before: '22:00:00'
  21. - condition: state
  22. entity_id: group.family
  23. state: 'not_home'
  24. - condition: state
  25. entity_id: input_boolean.disable_daily_vacuum
  26. state: 'off'
  27. action:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement