I can not connect Intel Edison to WiFi on Android Things

0

I have a problem wanting to do the tutorial from Android Things using my Intel Edison.

When wanting to connect the Edison, it does not connect, I know why when running the command:

$ adb logcat -d | grep Wifi

I do not see what the tutorial says:

V WifiWatcher: Network state changed to CONNECTED
V WifiWatcher: SSID changed: ...
I WifiConfigurator: Successfully connected to ...

Much less when wanting to Ping ...

    
asked by Alex Trujillo 21.04.2017 в 08:38
source

1 answer

0

Ready! I'm a little new in these things. When wanting to copy the tutorial code I found that I did not leave a space at the end of the code, when entering my password

that is:

adb shell am startservice \

-n com.google.wifisetup/.WifiSetupService \

-a WifiSetupService.Connect \

-e ssid NombreWifi \

-e passphrase ContraseñaWifi

After "PasswordWifi" you have to leave a space, that is:

adb shell am startservice \
-n com.google.wifisetup/.WifiSetupService \
-a WifiSetupService.Connect \
enter code here
-e ssid NombreWifi \
-e passphrase ContraseñaWifi" "

(space, without quotes)

At the end of the code, after the password, you have to leave a space.

    
answered by 21.04.2017 в 08:45