Using a raspberry pi 3 and an infrared reciver. with the help of a library called LIRC I recorded the signal of my android box remote control.
begin remote
name MyRemote
driver devinput
bits 64
eps 30
aeps 100
one 0 0
zero 0 0
pre_data_bits 64
pre_data 0x0
gap 509
toggle_bit_mask 0x0
frequency 38000
begin codes
KEY_1 0x116B000001000268
KEY_2 0x1169000001000267
KEY_3 0x116800000100026E
KEY_4 0x116E00000100025C
KEY_5 0x116C000001000263
KEY_6 0x116800000100024E
KEY_7 0x115D000001000268
KEY_8 0x116E000001000263
KEY_9 0x116B000001000267
KEY_0 0x116F000001000265
KEY_DOWN 0x0360000001000076
KEY_LEFT 0x1167000001000264
KEY_UP 0x117800000100025E
KEY_RIGHT 0x1169000001000266
KEY_BACK 0x1170000001000262
KEY_ENTER 0x1167000001000268
end codes
end remote
The problem is I can not find a library that can help me write code to send the IR signal from my Note3.
I tested ConsumerIrManager on Redmi Note 4, probably it will work on Note3 too.
Add permission to the manifest:
<uses-permission android:name="android.permission.TRANSMIT_IR" />
And in code:
ConsumerIrManager
UPD1:
To send 64 bit keys maybe you can split them into two 32 bit keys.
UPD2:
Under the hood
ConsumerIrManager
usesConsumerIrService
, which uses native methodprivate static native int halTransmit(int carrierFrequency, int[] pattern);
, which supports only 32 bit pattern slices. So probably there is no hacky way to send 64 bit slices, if splitting won't help.