Advertisement
Sdomotica

Logitech Harmony

Jul 9th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.54 KB | None | 0 0
  1. homeassistant:
  2.   customize:
  3.     script.harmony1:
  4.       icon: mdi:volume-plus
  5.     script.harmony2:
  6.       icon: mdi:volume-minus  
  7.     script.harmony3:
  8.       icon: mdi:speaker-wireless        
  9.     script.harmony4:
  10.       icon: mdi:television  
  11.  
  12. remote:
  13.   - platform: harmony
  14.     name: Harmony Chiasso
  15.     host: 192.168.1.175
  16.  
  17. script:
  18.   harmony1:
  19.     alias: 'Harmony Volume UP'
  20.     sequence:
  21.       - service: remote.send_command
  22.         data:
  23.           entity_id: remote.harmony_chiasso
  24.           device: '30338998'
  25.           command:
  26.            - VolumeUp
  27.            
  28.   harmony2:
  29.     alias: 'Harmony Volume Down'
  30.     sequence:
  31.       - service: remote.send_command
  32.         data:
  33.           entity_id: remote.harmony_chiasso
  34.           device: '30338998'
  35.           command:
  36.            - VolumeDown
  37.          
  38.   harmony3:
  39.     alias: 'Harmony Input Jack'
  40.     sequence:
  41.       - service: remote.send_command
  42.         data:
  43.           entity_id: remote.harmony_chiasso
  44.           device: '30338998'
  45.           command:
  46.            - InputAudio2
  47.            
  48.   harmony4:
  49.     alias: 'Harmony Input TV'
  50.     sequence:
  51.       - service: remote.send_command
  52.         data:
  53.           entity_id: remote.harmony_chiasso
  54.           device: '30338998'
  55.           command:
  56.            - InputAv4
  57.            
  58.            
  59. group:
  60.   harmony_controls:
  61.     name: Harmony Controls
  62.     control: hidden
  63.     entities:
  64.      - remote.harmony_chiasso
  65.       - script.harmony1
  66.       - script.harmony2
  67.       - script.harmony3
  68.       - script.harmony4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement