1

我的项目是用 Android 控制的 Arduino 遥控车。为此,我购买了 Arduino Uno R3 和Arduino WiFi shield。问题是wifiShield没有监听客户端,无法接收数据。我不知道如何解决这个问题,并且无法在设备之间建立连接。

Arduino代码:

char ssid[] = "***";         
char pass[] = "***";   
int status = WL_IDLE_STATUS;

WiFiServer server(1991);


boolean alreadyConnected = false; 

void setup() {
    Serial.begin(9600);
    Serial.println("Attempting to connect to WPA network...");
    Serial.print("SSID: ");
    Serial.println(ssid);

    status = WiFi.begin(ssid, pass);
    if ( status != WL_CONNECTED) { 
        Serial.println("Couldn't get a wifi connection");
        while(true);
    } 
    else {
        server.begin();
        server.status();
        Serial.print("Connected to wifi. My address:");
        IPAddress myAddress = WiFi.localIP();
        IPAddress inetAddress=WiFi.gatewayIP();
        Serial.println( myAddress);

        Serial.println("Inet: ");
        Serial.println(inetAddress);
    }
}

void loop() {

    WiFiClient client = server.available();

    if(client) {
        if (!alreadyConnected) {

            client.flush();    
            Serial.println("We have a new client");
            client.println("Hello, client!"); 
            alreadyConnected = true;
        } 

        if (client.available() > 0) {
            // read the bytes incoming from the client:
            char thisChar = client.read();
            // echo the bytes back to the client:
            server.write(thisChar);
            // echo the bytes to the server as well:
            Serial.write(thisChar);
        }
    }
}

什么可能导致我的问题,我该如何解决?

4

2 回答 2

3

有这个完全相同的问题。确保您使用的是 Arduino 1.0.3 而不是 1.0.5,这就是为我做的 :)

于 2013-06-30T22:36:40.790 回答
0

我可以确认使用 Arduino IDE 1.0.5 WiFi shield 不起作用。使用 1.0.3 它工作得很好。

于 2013-11-04T14:41:01.767 回答