Advertisement
boelle11

Untitled

Mar 9th, 2021
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. alias: Start Støvsug
  2. description: ''
  3. trigger:
  4. - platform: state
  5. entity_id: sensor.vacuum
  6. from: Ready
  7. to: Clean
  8. condition: []
  9. action:
  10. - service: scene.create
  11. data:
  12. scene_id: before
  13. snapshot_entities:
  14. - light.kitchen_1
  15. - light.kitchen_2
  16. - light.bedroom_bo
  17. - light.bedroom_tina
  18. - light.kontor
  19. - service: light.turn_on
  20. target:
  21. entity_id:
  22. - light.kitchen_1
  23. - light.kitchen_2
  24. - light.bedroom_bo
  25. - light.bedroom_tina
  26. - light.kontor
  27. - alias: Stop Støvsug
  28. description: ''
  29. trigger:
  30. - platform: state
  31. entity_id: sensor.vacuum
  32. from: Clean
  33. to: Ready
  34. condition: []
  35. action:
  36. - service: scene.turn_on
  37. target:
  38. entity_id: scene.before
  39. mode: single
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement