Skip to content

lvhwa0716/android-accessory-display

Repository files navigation

android-accessory-display

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)

Host Required

python 2.7 & ubuntu 14.04LTS

1. install libusb

2. install ffmpeg

sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
sudo apt-get install ffmpeg

3. install pyusb

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

6. ffmpeg-3.2.4 , use C instead of python

About

Android USB Accessory

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published