GPT 来帮助你
- #include <ESP8266WiFi.h>
- #include <WiFiClient.h>
- const char *ssid = "YourSSID"; // 设置您的热点名称
- const char *password = "YourPassword"; // 设置热点密码
- WiFiServer server(80); // 设置TCP服务器端口
- void setup() {
- Serial.begin(115200);
- delay(10);
- // 连接WiFi网络
- WiFi.softAP(ssid, password);
- // 启动TCP服务器
- server.begin();
- }
- void loop() {
- WiFiClient client = server.available();
- if (client) {
- Serial.println("New client connected");
- while (client.connected()) {
- if (client.available()) {
- char c = client.read();
- Serial.write(c);
- }
- }
- client.stop();
- Serial.println("Client disconnected");
- }
- }
复制代码 |