Android Things: Connect to Raspberry Pi 3

前端 未结 2 984
迷失自我
迷失自我 2020-11-30 15:40

Total newbie, I have a Raspberry Pi and have put the Android Things disk image on and booted it up, but I can\'t connect to it from a Windows 10 P

2条回答
  •  孤街浪徒
    2020-11-30 16:10

    If I connect a USB cable and use the adb devices command, nothing is detected.

    • AndroidThing device (Rpi3) will not connect through usb adb connection. see not connect to adb using USB. Either you have to connect it through network adb i.e through ethernet or following way

    Another way of connect to wifi is using serial cable.Connect serial cable to RPis GPIO.(see this connect serial cable to RPi3) and obtain serial console.and give the following command on terminal.

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

提交回复
热议问题