我試圖通過Wi-Fi網絡將信息從arduino板發送到我的電腦。 爲我的項目的目的,它必須是一個UDP連接 我使用「發送和接收UDP字符串」例如(http://arduino.cc/en/Tutorial/WiFiSendReceiveUDPString) 有一些變化:Arduino Wi-Fi屏蔽 - 無法發送UDP數據包
#include <SPI.h>
#include <WiFi.h>
#include <WiFiUdp.h>
int status = WL_IDLE_STATUS;
char ssid[] = "itay_net"; // your network SSID (name)
char pass[] = "0527414540"; // your network password (use for WPA, or use as key for WEP)
unsigned int localPort = 50505; // local port to listen on
IPAddress remote_ip(192, 168, 1, 100);
unsigned int remote_port = 50505;
char ReplyBuffer[] = "acknowledged"; // a string to send back
WiFiUDP Udp;
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");
// don't continue:
while(true);
}
// attempt to connect to Wifi network:
while (status != WL_CONNECTED) {
Serial.print("Attempting to connect to WPA SSID: ");
Serial.println(ssid);
// Connect to WPA/WPA2 network:
status = WiFi.begin(ssid, pass);
// wait 10 seconds for connection:
delay(10000);
}
// you're connected now, so print out the data:
Serial.print("You're connected to the network");
delay(10000);
printWifiStatus();
Serial.println("\nStarting connection to server...");
// if you get a connection, report back via serial:
Udp.begin(localPort);
}
void loop() {
int bite_send;
Udp.beginPacket(remote_ip, remote_port);
bite_send = Udp.write("hello");
Udp.endPacket();
Serial.println("the packet was sent");
Serial.println(bite_send);
delay(1000);
}
void printWifiStatus() {
// print the SSID of the network you're attached to:
Serial.print("SSID: ");
Serial.println(WiFi.SSID());
// print your WiFi shield's IP address:
IPAddress ip = WiFi.localIP();
Serial.print("IP Address: ");
Serial.println(ip);
// print the received signal strength:
long rssi = WiFi.RSSI();
Serial.print("signal strength (RSSI):");
Serial.print(rssi);
Serial.println(" dBm");
}
它編譯和連接到網絡就好了。 唯一的問題是我無法確定是否發送了數據包,因爲我在Wireshark上看不到它的蹤跡。 我也寫了一個Java套接字,監聽端口(50505),並應顯示來自數據包的消息,但它也沒有工作。 (我可以在這裏複製java代碼,但我可以向你保證,這不是問題因爲我用不同的java服務器測試它,它的工作,所以問題應該在Arduino方面)
幾細節縮小: 我相信「遠程IP」是正確的,但即使它不是 - 我仍然應該在Wireshark中看到它,所以它不會是問題。 我應該提到Wi-Fi防護罩的工作原理,我成功發送ping命令並運行其他示例(如SimpleWebServerWifi)。
我使用的是原始的Arduino Uno R3板和原始的Wi-Fi屏蔽層。 arduino IDE是最新版本。 我更新了我在GitHub上找到的最新更新的Wi-Fi屏蔽。
我還在我的以太網盾上運行了相同的「發送和接收UDP字符串」代碼(並進行了必要的更改),並且它確實工作了。
我不知道還有什麼可以嘗試的 - 請幫助。 任何幫助將不勝感激。
伊泰
我在這裏有同樣的問題,你現在找到什麼? – mou