日期: 2025 年 7 月 28 日

1 篇文章

ESP32 Ap模式Udp通信
#include <WiFi.h> #include <WiFiUdp.h> const char* ssid = "ESP32-AP"; // AP 名称 const char* password = "12345678"; // 密码(至少8位) WiFiUDP Udp; const int localUdpPort = 4210;…