Does the remote.conf file that you posted on the first page come from your device? Or is it just a guess from some other type of Xiaomo box or someone else who has rooted the same box?
That file lists factory_code = 0x00860001. The first four diigits of this code are the subdevice and device codes in hex. Here 0x86 = 134 decimal, which is the device code used in the upgrades that have been crated in this thread. The subdevice from factory_code is 0.
The following section of remote.conf defines the mapping of the OBCs to android functions:
key_begin
0x05 103
0x06 108
0x0b 105
0x0c 106
0x0d 97
0x08 102
0x07 158
0x04 139
0xea 116
0x11 236
0x03 240
0x0e 115
0x0f 114
0x30 104
0x33 109
0x35 68
0x36 87
0x38 67
key_end
The first value is the OBC in hex and the second value is the android key code. Android keycodes are referenced in this thread in the Vendor_0001_Product_0001.kl file:
http://freaktab.com/forum/tv-player-sup ... h-ir/page2
Converting the hex OBC code to decimal so that it works with remotemaster and translating the second value to a key name gives us the following:
key_begin
0x05 = OBC 5 103 = DPAD_UP
0x06 = OBC 6 108 = DPAD_DOWN
0x0b = OBC 11 105 = DPAD_LEFT
0x0c = OBC 12 106 = DPAD_RIGHT
0x0d = OBC 13 97 = DPAD_CENTER
0x08 = OBC 8 102 = HOME
0x07 = OBC 7 158 = BACK
0x04 = OBC 4 139 = MENU
0xea = OBC 234 116 = POWER WAKE
0x11 = OBC 17 236 = POWERLOW
0x03 = OBC 3 240 = (not listed)
0x0e = OBC 14 115 = VOLUME_UP
0x0f = OBC 15 114 = VOLUME_DOWN
0x30 = OBC 48 104 = VOLUME_UP
0x33 = OBC 51 109 = VOLUME_DOWN
0x35 = OBC 53 68 = F10 WAKE_DROPPED
0x36 = OBC 54 87 = F11 WAKE_DROPPED
0x38 = OBC 56 67 = F9 WAKE_DROPPED
key_end
On the second page of this thread 3FG identified the following buttton names and OBCs, which match to what I have above:
Menu Xiaomi Dev= 134 OBC= 4
Up Xiaomi Dev= 134 OBC= 5
Down Xiaomi Dev= 134 OBC= 6
Exit Xiaomi Dev= 134 OBC= 7
Home Xiaomi Dev= 134 OBC= 8
Left Xiaomi Dev= 134 OBC= 11
Right Xiaomi Dev= 134 OBC= 12
Select Xiaomi Dev= 134 OBC= 13
Vol+ Xiaomi Dev= 134 OBC= 14
Vol- Xiaomi Dev= 134 OBC= 15
Power Xiaomi Dev= 60 OBC= 204
(This assumes that exit and back are just different names for the same key.)
Taking out the matching values leaves:
OBC 234 = POWER WAKE
OBC 17 = POWERLOW
OBC 3 = (not listed)
OBC 48 = VOLUME_UP
OBC 51 = VOLUME_DOWN
OBC 53 = F10 WAKE_DROPPED
OBC 54 = F11 WAKE_DROPPED
OBC 56 = F9 WAKE_DROPPED
If the remote.conf file you posted on the first page is from your box, it suggests that these are the only other values that the box will recognize. These additional volume_up and volume_down keys might be recognized as something else.