Archive:MINIX A2: Difference between revisions
mNo edit summary |
mNo edit summary |
||
| Line 3: | Line 3: | ||
| [[File:a2.png|400px]] || [[File:back_face_a2.png|550px]]<br/>This is the MINIX NEO A2 Remote.<br /> | | [[File:a2.png|400px]] || [[File:back_face_a2.png|550px]]<br/>This is the MINIX NEO A2 Remote.<br /> | ||
It has a full QWERTY keyboard on the back, which allows the use of the '''Search''' function in KODI.<br/> | It has a full QWERTY keyboard on the back, which allows the use of the '''Search''' function in KODI.<br/> | ||
As much as we would like every button to work 'out of the box', we need to make changes to the keymaps files for several of the front facing buttons<br/> | As much as we would like every button to work 'out of the box', we need to make changes to the [[keymaps]] files for several of the front facing buttons<br/> | ||
This task is necessary for the majority of RF remotes on the market.<br/> | This task is necessary for the majority of RF remotes on the market.<br/> | ||
<br/> | <br/> | ||
Revision as of 14:55, 25 January 2015
![]() |
![]() This is the MINIX NEO A2 Remote. It has a full QWERTY keyboard on the back, which allows the use of the Search function in KODI. |
mouse.xml
<keymap>
<global>
<mouse>
<leftclick>Select</leftclick>
<rightclick>Back</rightclick>
<middleclick>noop</middleclick>
<doubleclick id="0">noop</doubleclick>
<longclick id="0">noop</longclick>
<wheeldown>noop</wheeldown>
<wheelup>noop</wheelup>
<mousedrag>noop</mousedrag>
<mousemove>noop</mousemove>
<mousedragend>Select</mousedragend>
<mouserdragend>Back</mouserdragend>
</mouse>
</global>
</keymap>
keyboard.xml (additions)
If there are multiple keymap entries for the same key name, the last entry wins.
I recommend placing manual entries at the end of the <keyboard> stanza inside <global>
This saves us the effort of finding and editing the original key assignment
....
<F2>NextSubtitle</F2>
<home>AudioNextLanguage</home>
<return>SendClick(8)</return>
<F1>Stop</F1>
<prev_track>PageUp</prev_track>
<next_track>PageDown</next_track>
</keyboard>
</global>
....




















