2012-08-27, 07:46
Hi
I've got XBMC running happily on a raspberrypi and my remote works almost perfectly using HDMI CEC (Panasonic TV)
Anyway the fastforward and rewind buttons on the remote instead do skipnext and skipprev, jumping to the start or end of everything without chapters.
I figured this would be pretty easy to fix since I can see the key presses in xbmc.log and the keycodes they map too as below
So I created a remote.xml file and added pretty much every combination I could think of for this to work but nothing changes. I've confirmed the file is being read and overwrites any previous definitions by mapping the "yellow" button to OSD and that works properly.. The working file remapping yellow is below
I've tried adding
I've tried changing it to
but none of them change the mappings of these keys. The logfile doesn't give me any errors when doing this so I assume the format is correct, just for some reason that mappings don't take.
What am I doing wrong?
Thanks
I've got XBMC running happily on a raspberrypi and my remote works almost perfectly using HDMI CEC (Panasonic TV)
Anyway the fastforward and rewind buttons on the remote instead do skipnext and skipprev, jumping to the start or end of everything without chapters.
I figured this would be pretty easy to fix since I can see the key presses in xbmc.log and the keycodes they map too as below
Code:
17:22:32 T:1102704640 DEBUG: OnKey: pause (dd) pressed, action is SkipPrevious
17:22:43 T:1102704640 DEBUG: OnKey: 223 (df) pressed, action is SkipNext
So I created a remote.xml file and added pretty much every combination I could think of for this to work but nothing changes. I've confirmed the file is being read and overwrites any previous definitions by mapping the "yellow" button to OSD and that works properly.. The working file remapping yellow is below
Code:
<keymap>
<global>
<remote>
<yellow>OSD</yellow>
</remote>
</global>
</keymap>
I've tried adding
Code:
<key id="223">FastForward</key>
I've tried changing it to
Code:
<universalremote>
<obc221>Rewind</obc221>
<obc223>FastForward</obc223>
</universalremote>[/code]
but none of them change the mappings of these keys. The logfile doesn't give me any errors when doing this so I assume the format is correct, just for some reason that mappings don't take.
What am I doing wrong?
Thanks