Advertisement
boelle11

Untitled

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