我正在尝试使用带有 ESP82660 的 arduino Mega 2560 发出 HTTP GET 请求,但它总是重新启动我的 esp8266。
这是我的方法:
char *hello = "GET /api/bus/register?code=";
strcat(hello,test);
strcat(hello," HTTP/1.1\r\nHost: 192.168.88.233\r\nConnection:close\r\n\r\n");
wifi.send((const uint8_t*)hello, strlen(hello));
uint32_t len = wifi.recv(buffer, sizeof(buffer), 10000);
if (len > 0) {
Serial.print("Received:[");
for(uint32_t i = 0; i < len; i++) {
Serial.print((char)buffer[i]);
}
Serial.print("]\r\n");
}