Hi CMata,
I have issues whit the IDE sketches. Im able to connect whit Edison to my wifi network through putty console and ssh works also great but if I try to upload an arduino wifi skech than it comes to an endless loop at this point.
// attempt to connect to Wifi network:
while (status != WL_CONNECTED) {
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
// Connect to WPA/WPA2 network. Change this line if using open or WEP network:
status = WiFi.begin(ssid, pass);
// wait 10 seconds for connection:
delay(10000);
}
Till yet i never get any positive result from an arduino sketch ( regarding the wifi library ). I would like to send and recieve UDP pockets for my robot project which works fine whit mega and wifi shield but yet i have some issue to move the project to my edison-arduino platform. Of course i have flashed more times whit the latest update. The reason why i try to change to this platform is because the Wifi shield have an UDP package send lag issue in every 6-7 sec. this means for a few moments i can just recieve 1-2 package/sec and I need at least 15-20 stable. I hoped the edison platform will solve this issue but for testing i have to get first the IDE sketches bring into work
Do you have any suggestion what can be the issue? I thought if the wifi is already in use or connected than makes no sense to establish a new connection from arduino too.