我无法连接到我的Arduino WiFi屏蔽服务器,但我可以ping它

时间:2013-06-28 05:13:15

标签: networking arduino wifi ping

我可以成功ping通Arduino WiFi shield的IP,但是当我通过Chrome连接到它时,我得到“糟糕!Google Chrome无法连接到[IP here]”。

以下是我的详细信息:

3 个答案:

答案 0 :(得分:4)

经过多天的互联网浏览,我终于遇到了解决方案(位于here):

Arduino IDE版本应从1.0.5降级到1.0.2。

卸载更高版本并重新安装版本1.0.2,必要时再次安装设备驱动程序,并使用旧版本的Arduino IDE上传代码。

我希望这可以帮助那些与我有同样问题的人。

答案 1 :(得分:0)

您必须从github这里下载最新的Wifi图书馆https://github.com/arduino/wifishield并替换您现有的图书馆... 在我的情况下,它在arduino 1.0.5的固件更新后得出结论

答案 2 :(得分:0)

您好我遇到了同样的问题 我不得不升级我的wifi防护罩,并从arduino(1.0.6)下载最新版本,然后您将看到您将在局域网内访问您的无线网盾。

此示例使用的是静态IP,可能很有用

此致

#include <SPI.h>
#include <WiFi.h>

// the IP address for the shield:
IPAddress ip(192, 168, 1, 200);    

char ssid[] = "xxxxxxxx";    // your network SSID (name) 
char pass[] = "xxxxxxxx";    // your network password (use for WPA, or use as key for WEP)

int status = WL_IDLE_STATUS;

void setup()
{  
  // Initialize serial and wait for port to open:
  Serial.begin(9600); 
  while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }

  // check for the presence of the shield:
  if (WiFi.status() == WL_NO_SHIELD) {
    Serial.println("WiFi shield not present"); 
    while(true);  // don't continue
  } 

  WiFi.config(ip);

  // 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);
  }

  // print your WiFi shield's IP address:
  Serial.print("IP Address: ");
  Serial.println(WiFi.localIP()); 
}

void loop () {}