How to get the Epson BT 200 (Moverio) listed with ADB (USB-Debugging Moverio on Ubuntu)

拥有回忆 提交于 2019-12-23 20:12:43

问题


My Epson BT-200 does not get listed for adp when I execute the command:

adb devices

To fix that problem I followed the steps of this question. Unfortunately without success.

lsusb

prints out the following line for my device:

Bus 002 Device 081: ID 04b8:0c06 Seiko Epson Corp. 

So I edited my "/etc/udev/rules.d/99-android.rules" file and now it looks like this:

SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", ATTR{idProduct}=="6860", MODE="0666", OWNER="tokam"
SUBSYSTEM=="usb", ATTR{idVendor}=="04b8", ATTR{idProduct}=="0c06", MODE="0666", OWNER="tokam"

But the restarting of udev (and even my computer), replugging of the bt-200 usb-cable and the restart of the adb-server does not lead to a listed device.

What can I do to get the device listed with adb?

I checked on the device, USB-Debugging is enabled. It is turned on, and the password is entered, so it got mounted as a disc-drive.

来源:https://stackoverflow.com/questions/27727627/how-to-get-the-epson-bt-200-moverio-listed-with-adb-usb-debugging-moverio-on

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!