ESP32間でudp通信にて直接メッセージを送りたいと考えています。
2台のESP32に対し、ネット上のコードを参考に、Arduno IDEで送信用と受信用のプログラムを書きました。
しかし知識に乏しいため、案の定、UDP通信には失敗します。
以下のプログラムに対し、アドバイスを頂ければと思います。
自分の疑問点として、
①UDP通信を行う際に、どちらかのAPにもう片方が接続する必要があるか(接続してもudp通信には失敗しました)
②esp32をAPモードにする必要があるのか(IPアドレスの設定のためなのかもしれません)
③通常ルーターが割り振るローカルipアドレスを、ルーターなしに、勝手に自分で定義できるのか
といったものがあります。
おそらく根本的に理解できていないことが原因と考えておりますが、
修正の手がかりを見つけられればと思い質問させていただきました。
知見をお持ちの方、認識不足の点のご指摘だけでも構いませんので、何卒宜しくお願い致します。
Arduino
1//UDP送信用 2#include <WiFi.h> 3#include <WiFiUdp.h> 4 5const char ssid[] = "esp32_1"; 6const char pass[] = "esp32esp32"; 7const int localPort = 10000; 8 9const IPAddress ip(192, 168, 30, 1); 10const IPAddress subnet(255, 255, 255, 0); 11 12const IPAddress ip_send(192, 168, 30, 255);//送信先のIPアドレス 13 //できれば最後を255に設定し、複数クライアントに送信したいと思います。現在では、ここを送信先IPの192.168.30.2に設定しても失敗します。 14 15byte send_byte = 0x05;//送信する値 16 17WiFiUDP udp; 18 19void setup() { 20 Serial.begin(115200); 21 22 WiFi.softAP(ssid, pass); 23 delay(100); 24 WiFi.softAPConfig(ip, ip, subnet); 25 26 Serial.print("AP IP address: "); 27 IPAddress myIP = WiFi.softAPIP(); 28 Serial.println(myIP); 29 30 Serial.println("Starting UDP"); 31 udp.begin(localPort); 32 33 Serial.print("Local port: "); 34 Serial.println(localPort); 35} 36 37 38void loop(){ 39 udp.beginPacket(ip_send,localPort); 40 udp.print(send_byte); 41 udp.endPacket(); 42 delay(1000); 43} 44
Arduino
1//UDP受信用 2#include <WiFi.h> 3#include <WiFiUdp.h> 4 5const char ssid[] = "esp32_2"; 6const char pass[] = "esp32esp32"; 7const int localPort = 10000; 8 9const IPAddress ip(192, 168, 30, 2); 10const IPAddress subnet(255, 255, 255, 0); 11 12WiFiUDP udp; 13 14void setup() { 15 Serial.begin(115200); 16 17 WiFi.softAP(ssid, pass); 18 delay(100); 19 WiFi.softAPConfig(ip, ip, subnet); 20 21 Serial.print("AP IP address: "); 22 IPAddress myIP = WiFi.softAPIP(); 23 Serial.println(myIP); 24 25 Serial.println("Starting UDP"); 26 udp.begin(localPort); 27 28 Serial.print("Local port: "); 29 Serial.println(localPort); 30} 31 32void loop() { 33 int packetSize = udp.parsePacket(); 34 35 if (packetSize) { 36 Serial.println("ok"); } 37 else{ 38 Serial.println("no"); } 39 40 delay(1000); 41} 42
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/09/23 13:09