我刚刚使用了Moverio BT-100,Epson似乎与纸袋一样多用。有没有人设法让USB调试/ ADB在Mac上看到它?
答案 0 :(得分:8)
Burf。
你必须去" .android"夹。要找到它,只需打开一个终端并写下:
cd
cd .android/
之后,您需要修改文件adb_usb.ini(我建议先备份它)并在最后一行之后添加供应商ID,在本例中,对于Epson,它是:0x04B8。
之后看起来应该是这样的:
# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0xXXXX
0x04B8
然后你只需保存文件并运行:
adb kill-server
adb start-server
请记住,您需要在设备中启用de USB调试才能允许adb访问"请参阅"它。
在此之后,您的设备应列出:
adb devices
希望它有所帮助。
Aernarion。
答案 1 :(得分:0)
1)在~usr / .android / adb_usb.ini中添加供应商ID(0x04B8)
# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0x04B8
2)保存上面的adb_usb.ini文件。
其次是
A. Bring up command prompt.
B. Type “adb kill-server” then enter.
C. Type “adb start-server” then enter.
D. Type “adb devices” then enter.
E. You should see BT-200 as one of the devices.