I've a big problem
i just got my arduino mega and the wifi shield all official and last version ...
The problem is "WiFi shield not present"
i've tried many examples from the library with the same problem ...
i did read much about this problem
** so i've connected the 7 and 3 pinout.
** i do not connect the framework's jumper
** i've updated the wifi shield
this problem is the same with MEGA or UNO
Anybody PLEASE can help me !! =(
shyraza:
The problem is "WiFi shield not present"
i've tried many examples from the library with the same problem ...
User liudr has posted a workaround for that problem. The problem is with the examples (poor coding), not with the shield. You can read about it here:
http://forum.arduino.cc/index.php?topic=166151.0
AlxDroidDev:
User liudr has posted a workaround for that problem. The problem is with the examples (poor coding), not with the shield. You can read about it here:
Thumbs way down for Arduino WiFi shield. Read before you buy - Networking, Protocols, and Devices - Arduino Forum
As AlxDroidDev suggested, try modifying the example code by replacing
// check for the presence of the shield:
if (WiFi.status() == WL_NO_SHIELD) {
Serial.println("WiFi shield not present");
// don't continue:
while(true);
}
with
// check for the presence of the shield:
unsigned long start=millis();
while (WiFi.status() == WL_NO_SHIELD)
{
if ((millis()-start)>30000)
{
Serial.println("WiFi shield not present");
// don't continue:
while(true);
}
delay(500);
}
and see if the shield starts being recognized.