How to get Epson BT 200 (Moverio) listed in ADB (USB Debug Moverio on Ubuntu)

My Epson BT-200 does not make it to the adp list when I run the command:

adb devices

      

To fix this issue, I followed the following question steps . Unfortunately, no success.

lsusb

      

outputs the following line for my device:

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

      

So, I edited the file "/etc/udev/rules.d/99-android.rules" 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 restarting udev (and even my computer), reloading the bt-200 usb cable and restarting the adb server does not result in the specified device.

What can be done to get the device listed in adb?

I checked the device, USB debugging is enabled. It turns on and a password is entered, so it installs as a disk.

+3


source to share





All Articles