kaja69;546894 Wrote: 
> Thanks a lot for your help! I did as you wrote (also correcting
> "<parameter ID="filename">RC-232M.lirc to "RC-632M.lirc") but it
> doesn't work for me. I see Squeeze IR under Settings but when I click
> it nothing happens. Also the hotkey (back+home) doesn't do anything.
> Any input?
oops, I was doing it from memory and forgot the most important line of
xml, try this :o

Code:
--------------------
    <SqueezeIR>
  
  <hotkey>66</hotkey>
  
  <remotes>
  <remote ID="onkyo">
  <protocol>lirc</protocol> <!-- I forgot this -->
  <parameters>
  <parameter ID="filename">RC-632M.lirc</parameter> <!-- name of the lirc file, 
case sensitive -->
  <parameter ID="remote">Onkyo_RC-632M</parameter> <!-- name of the remote 
within the lirc file -->
  </parameters>
  </remote>
  </remotes>
  
  <profiles>
  <profile ID="Onkyo">  <!-- This will appear in SqueezeIR's settings screen -->
  <keys>
  <key ID="Volume_Up">
  <events>
  <event ID="PRESS">
  <override>true</override>
  <actions>
  <action order="1">
  <remote>onkyo</remote>  <!-- must match the <remote ID="..."> bit above -->
  <command>VOL+</command> <!-- from lirc file, case sensitive -->
  </action>
  </actions>
  </event>
  <event ID="HOLD">
  <override>true</override>
  <actions>
  <action order="1">
  <remote>onkyo</remote>  <!-- must match the <remote ID="..."> bit above -->
  <command>VOL+</command> <!-- from lirc file, case sensitive -->
  </action>
  </actions>
  </event>
  </events>
  </key>
  <key ID="Volume_Down">
  <events>
  <event ID="PRESS">
  <override>true</override>
  <actions>
  <action order="1">
  <remote>onkyo</remote>  <!-- must match the <remote ID="..."> bit above -->
  <command>VOL-</command> <!-- from lirc file, case sensitive -->
  </action>
  </actions>
  </event>
  <event ID="HOLD">
  <override>true</override>
  <actions>
  <action order="1">
  <remote>onkyo</remote>  <!-- must match the <remote ID="..."> bit above -->
  <command>VOL-</command> <!-- from lirc file, case sensitive -->
  </action>
  </actions>
  </event>
  </events>
  </key>
  </keys>
  </profile>
  </profiles>
  
  </SqueezeIR>
  
--------------------


-- 
indifference_engine
------------------------------------------------------------------------
indifference_engine's Profile: 
http://forums.slimdevices.com/member.php?userid=20698
View this thread: http://forums.slimdevices.com/showthread.php?t=66795

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to