Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

USB Debugging Moverio on Mac

Tags:

android

adb

I have just go a Moverio BT-100, Epson seem as much use as a paper bag. Has anyone managed to get USB Debugging / ADB to see it on a mac?

like image 772
Burf2000 Avatar asked Feb 14 '23 15:02

Burf2000


1 Answers

Burf.

You have to go to the ".android" folder. To find it, just open a terminal and write:

cd
cd .android/

After that, you need to modify the file adb_usb.ini (I recommend to back it up previously) and add the vendor ID after the last line, In this case, for Epson it is: 0x04B8.

It should look like this after that:

# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0xXXXX
0x04B8

Then you only have to save the file and run:

adb kill-server
adb start-server

Remember that you need to enable de USB debugging in your device to allow adb to "see" it.

After this, your device should be listed with:

adb devices

Hope it helps.

Aernarion.

like image 169
Aernarion Avatar answered Feb 26 '23 19:02

Aernarion