kaja69;545108 Wrote: 
> I am not a tech expert and could use some input please. I can't get it
> to work with my Onkyo TX-SR805 receiver. The remote is a RC-690M but I
> can't seem to find the LIRC file. Can anybody confirm that Onkyo
> remotes should work? Thanks in advance!
Hi,

I found this:
http://www.hifi-remote.com/forums/dload.php?action=file&file_id=5407
I'm not completely familiar with the format but it looks like the codes
are the same as the RC-632M from the LIRC database.  Download it and
stick it in SqueezeIR\data on your controller using WinSCP.  Next
you'll need to modify SqueezeIR\data\SqueezeIR.xml - start with
something simple.   The code below will map the volume buttons of the
controller to control the Onkyo.  Once you see how that works you can
start doing fancy stuff like defining your own menus, controlling
multiple devices, macros, auto profile selection etc...

Code:
--------------------
    
  <SqueezeIR>
  
  <hotkey>66</hotkey>
  
  <remotes>
  <remote ID="onkyo">
  <parameters>
  <parameter ID="filename">RC-232M.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