Kodi Community Forum

Full Version: Please help me with my arcade cabinet buttons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all, I have an arcade cabinet running Hyperspin as the main thing, and have set up xbmc to be run from it. The problem I'm having is trying to change the keyboard.xml so that in xbmc button 1 on the keyboard sends a select/enter command and button 2 goes back. Once I've worked out how to get these basic functions working then I can think about changing other buttons for play/pause etc. The joystick works fine for up, down, left and right commands. I've tried editing the keyboard.xml with no luck. Pleases help, I'm running eden. Thankyou Smile
Bump, anyone able to help? Smile
Something like this?

Code:
<keymap>
  <global>
    <keyboard>
      <one>Select</one>
      <two>Back</two>
    </keyboard>
  </global>
</keymap>

There's also "PreviousMenu" you can use which works kind of like Back, but different. (It's what the Escape key does)
Many Thanks, That worked great!

(2012-05-28, 02:06)Ned Scott Wrote: [ -> ]Something like this?

Code:
<keymap>
  <global>
    <keyboard>
      <one>Select</one>
      <two>Back</two>
    </keyboard>
  </global>
</keymap>

There's also "PreviousMenu" you can use which works kind of like Back, but different. (It's what the Escape key does)