Vigica 2,4 remote for Pi
#1
If someone is searching for simple 2,4 remote that works with Pi and openelec almost out of the box this is the one. It has just few buttons is simple and user friendly.
You can get it for 7 usd or. even lower http://www.aliexpress.com/item/New-Arriv...92432.html



The only thing needed is a little modified keyboard.xml (/storage/.kodi/userdata/keymaps/) so here it is so you can use it right away. Of course you can do further modifications if you want.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!--      Online sample: https://github.com/xbmc/xbmc/blob/master/system/keymaps/keyboard.xml    -->
<!--      Some samples for Vigica RF remote                        -->
<!--      <key id="0xf01b">Back</key>                              -->
<!--      <escape>Back</escape>                                    -->

<!--      <key id="0xf088">PreviousMenu</key>                      -->
<!--      <home>PreviousMenu</home>                                -->

<!--      <key id="0xf0d6">ContextMenu</key>                       -->
<!--      <leftwindows>ContextMenu</leftwindows>                   -->

<!--      Key ID VIGICA:             -->
<!--      Home: 0xf088               -->
<!--      Left: 0xf082               -->
<!--      Right: 0xf083              -->
<!--      Up: 0xf080                 -->
<!--      Down: 0xf081               -->
<!--      OK: 0xf00d                 -->
<!--      Contex Menu: 0xf0d6        -->
<!--      Back: 0xf01b               -->
<!--      Volume UP: 0xf0b9          -->
<!--      Volume DOWN: 0xf0b8        -->
<!--      Power: 0xf0de              -->

<keymap>
  <global>
    <keyboard>
     <key id="0xf01b">Back</key> <!--back-->
     <key id="0xf088">PreviousMenu</key> <!--home-->
     <key id="0xf0d6">ContextMenu</key> <!--contex-->
    </keyboard>
  </global>
  <FullscreenVideo>
    <keyboard>
     <key id="0xf0d6">CodecInfo</key>
     <key id="0xf01b">Stop</key>      
    </keyboard>
  </FullscreenVideo>
</keymap>
Reply

Logout Mark Read Team Forum Stats Members Help
Vigica 2,4 remote for Pi0