2

I have flashed my Raspberry Pi 3 with the Android Things image, I have not been able to connect it to my wifi network. I have run adb devices but I get no response.

4

3 回答 3

6

看看这个问题:connect to Raspberry Pi 3 using adb

Raspberry Pi 不是 USB 设备,USB 连接只是为了供电,所以它不会显示在adb devices. 您必须先将其连接到网络,然后再使用adb connect.

于 2016-12-14T18:42:38.287 回答
1

简而言之,您必须使用以太网将其连接到网络,然后使用 adb 命令按照说明将其连接到 Wifi。是的,我知道这很愚蠢,但这就是它目前的工作方式。

并且 adb devices 在与 TCP 连接之前不会显示任何内容。RPi3 不能用作 USB 从设备。

检查此处的详细信息和其他内容。

http://pierrchen.blogspot.com.au/2017/01/a-hands-on-of-android-things-on-rpi3.html

于 2017-02-08T09:32:59.683 回答
0

如果你正在尝试连接wifi,你可以通过USB转TTL模块将你的pi与笔记本电脑连接,然后你可以使用putty运行以下命令

am startservice \
    -n com.google.wifisetup/.WifiSetupService \
    -a WifiSetupService.Connect \
    -e ssid YOURWIFINAME \
    -e passphrase YOURWIFIPASSWORD

如果你成功了,你应该能够在运行后看到你的 pi 的 IP 地址:

ifconfig wlan0

像这样:

inet addr: 192.168.1.104 Bcast: 192.168.1.255  Mask 255.255.255.0
于 2017-05-28T17:48:48.870 回答