indifference_engine;545155 Wrote: > 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. Try Downloading the > RC-632M lirc file 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 and can be pasted over > any existing contents. > > Once all the files are in place, restart your controller, go to > Settings>SqueezeIR and set 'default profile' to 'onkyo' then exit the > settings screen. You should now be able to control the volume of your > amp! 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> > -------------------- > >
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? -- kaja69 ------------------------------------------------------------------------ kaja69's Profile: http://forums.slimdevices.com/member.php?userid=27737 View this thread: http://forums.slimdevices.com/showthread.php?t=66795 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/plugins
