Advertisement
adorobis

hold button volume up

May 27th, 2022
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. alias: Ikea Remote 1 - right arrow hold
  2. description: ''
  3. trigger:
  4. - platform: state
  5. entity_id: sensor.ikea_remote_1_action
  6. to: arrow_right_hold
  7. id: hold
  8. - platform: state
  9. entity_id:
  10. - sensor.ikea_remote_1_action
  11. to: arrow_right_release
  12. id: release
  13. condition: []
  14. action:
  15. - choose:
  16. - conditions:
  17. - condition: trigger
  18. id: hold
  19. sequence:
  20. - repeat:
  21. until:
  22. - condition: template
  23. value_template: '{{ repeat.index > 20 }}'
  24. sequence:
  25. - service: media_player.volume_up
  26. data: {}
  27. target:
  28. entity_id: media_player.szary_main
  29. - delay:
  30. hours: 0
  31. minutes: 0
  32. seconds: 0
  33. milliseconds: 200
  34. default: []
  35. mode: restart
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement