Android USB Accessory,lvhwa0716@163.com
a. Mirror Android Device Screen to PC Monitor
b. Enter words by PC Keyboard
c. PC Mouse actor as multi-touch
Note :default use multi-touch hid, if phone not support please set
1). _support_touch = 2 , drag and double click will work
2). _support_touch = 3 , mouse pointer can work , better then 1)
or download source : https://github.com/walac/pyusb
4. permission
/etc/udev/rules.d/51-android.rules
SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="2d01", MODE="0666", OWNER="<username>"
SUBSYSTEM=="usb", ATTR{idVendor}=="2717", ATTR{idProduct}=="ff68", MODE="0666", OWNER="<username>"
SUBSYSTEM=="usb", ATTR{idVendor}=="2717", ATTR{idProduct}=="ff48", MODE="0666", OWNER="<username>"
or used sudo when permission exception
5. run
enable USB debug on phone, connect phone to PC with usb cable .
First must check adb connect is OK (eg use command: adb shell ls)
a. aosp/frameworks/base/tests/AccessoryDisplay on phone(or install ScreenMirror to phone)
when use this , screen size must less 320x240,
or modify com.android.accessorydisplay.common.Protocol.MAX_ENVELOPE_SIZE more larger
b. run ffplay on ubuntu.
./ffplay -f h264 -vcodec h264 -sn -an /tmp/android_accessory_display.pipe
prebuilt ffplay support video sync , it show slow then phone.
getcode : https://github.com/FFmpeg/FFmpeg
fixed it(not use video sync) : get ffmpeg source
modify ffplay.c like follow :
time= av_gettime_relative()/1000000.0;
if (time < is->frame_timer + delay) {
*remaining_time = FFMIN(is->frame_timer + delay - time, *remaining_time);
//goto display; // == mask this line
}
is->frame_timer += delay;
c. run this file