Skip to content

Instantly share code, notes, and snippets.

@kid1412-net
Last active December 30, 2016 18:35
Show Gist options
  • Save kid1412-net/86d4814d875434208ce71a17d2f17622 to your computer and use it in GitHub Desktop.
Save kid1412-net/86d4814d875434208ce71a17d2f17622 to your computer and use it in GitHub Desktop.
<!-- README -->
<!-- Small fix to use OSD and VolumeUp, VolumeDown with iBuffalo Gamepad within Kodi -->
<!-- -->
<!-- - To enter OSD: press Start -->
<!-- - To start/stop video: press Start 2 times -->
<!-- - To decrease volume: press Left Shoulder -->
<!-- - To increase volume: press Right Shoulder -->
<!-- - To rewind: press Start then Left Shoulder -->
<!-- - To fastforward: press Start then Right Shoulder -->
<!-- -->
<!-- Thanks for reading it ;-) -->
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
<global>
<joystick name="USB,2-axis 8-button gamepad "><!--iBuffalo SNES-->
<button id="1">Select</button><!--A-->
<button id="2">Back</button><!--B-->
<button id="3">Stop</button><!--X-->
<button id="4">ContextMenu</button><!--Y-->
<button id="5">Rewind</button><!--L-->
<button id="6">FastForward</button><!--R-->
<button id="7">Info</button><!--SELECT-->
<button id="8">PlayPause</button><!--START-->
<button id="7,8">Quit</button><!--SELECT+START-->
<axis id="1" limit="+1">Right</axis><!--RIGHT-->
<axis id="1" limit="-1">Left</axis><!--LEFT-->
<axis id="2" limit="-1">Up</axis><!--UP-->
<axis id="2" limit="+1">Down</axis><!--DOWN-->
</joystick>
</global>
<FullscreenVideo>
<joystick name="USB,2-axis 8-button gamepad "><!--iBuffalo SNES-->
<button id="1">Select</button><!--A-->
<button id="2">Back</button><!--B-->
<button id="3">Stop</button><!--X-->
<button id="4">ContextMenu</button><!--Y-->
<button id="5">VolumeDown</button><!--L-->
<button id="6">VolumeUp</button><!--R-->
<button id="7">Info</button><!--SELECT-->
<button id="8">OSD</button><!--START-->
</joystick>
</FullscreenVideo>
</keymap>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment