On Thursday, May 23rd, 2013, at 11:48:10h +0100, Pinnerite reported:
> The IR remote supplied with the Origen AE S10V case is very flashy but comes
> with no instructions nor details of its manufacturer.
And you never thought to consult the manufacturer's web site
<
http://www.origenae.com/en/accessory_rc197.htm>
where it tells you that it is a Philips based model and that it
uses the RC6 IR protocol?
The way to proceed is to install lirc and associated utilities,
and then use irrecord to record the IR code sent for every key
when it is pushed on the remote control.
An /etc/lirc/lircd.conf is then created specifying an appropriate name
for the remote, various parameters characteristic of the IR transmission,
and a listing with appropriate single word key names and the IR code
Slow 0x0000000000007D82
Vol- 0x000000000000639C
Then you create a lirc configuration file for every application that
you want to respond to lirc mapping the name used for the button in
the lircd.conf file with the action that the application is going
to perform for that particular remote, eg
begin
prog = mplayer
remote = Creative_RM-900
button = Slow
config = speed_mult -1
repeat = 1
end
begin
prog = mplayer
remote = Creative_RM-900
button = Vol-
config = volume -1
repeat = 1
end
I recommend keeping all your application specific configurations in
a sub directory eg /etc/lirc/apps
If you want to peform a mouse action by presssing a key on the remote
then you need to look at lircmd and its configuration file.
Full documentation on setting up the configuration files is available at
<
http://www.lirc.org/html/configure.html>
and there is an XBMC specific how to at
<
http://wiki.xbmc.ORG/index.php?title=HOW-TO:Setup_Lirc>
Happy button pressing!