Reputation: 271
I stay trying this: https://developer.android.com/things/hardware/raspberrypi.html
I build a new image in android things console option.
I put a image in raspberry pi 3, but when I run adb devices, my new rpi 3 android things device never appears
The light of the ethernet cable attached in the raspberry pi 3 not flash
Help me please
SOLVED w I change sd card to class 10 sd
Upvotes: 0
Views: 573
Reputation: 753
Per the comments you need to connect to adb via your network. So connect your RPI to the network via ethernet cable and find its ip addr. For example you might find it this way:
$ nmap -sP 192.168.1.0/24
Then, say you see the device IP as 192.168.1.228. Connect to adb via the network like this:
$ adb connect 192.168.1.228
connected to 192.168.1.228:5555
At this point you should be able to validate your connection:
$ adb devices
List of devices attached
192.168.1.228:5555 device
Upvotes: 1