#tcp #arduino #esp8266 #loopback-address
#tcp #arduino #esp8266 #обратный адрес
Вопрос:
Я пытаюсь подключить свой Arduino ESP8266 или любую из совместимых плат, таких как WeMos mini или NodeMCU, к моему локальному серверу, либо localhost(127.0.0.1)
или 172.xx.xx.xxx port 80
.
Я получаю httpResponseCode
ошибку -1. Но если я подключу его к удаленному серверу, я получаю httpResponseCode 200 (OK)
.
Я использую XMPP
сервер (даже протестированный с Coldfusion server). Мой код выглядит следующим образом. Кто-нибудь может помочь?
#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
#include <WiFiClient.h>
const char* ssid = "ssid";
const char* password = "password";
//Your Domain name with URL path or IP address with path
String serverName = "http://stackoverflow.com";// returns 200 (ok results)
//String serverName = "127.0.0.1"; // Gives -1 error, Tried IP addresses with 172.xx.xx.xx or even 192.168.xx.xx.
// the following variables are unsigned longs because the time, measured in
// milliseconds, will quickly become a bigger number than can be stored in an int.
unsigned long lastTime = 0;
// Timer set to 10 minutes (600000)
// unsigned long timerDelay = 600000;
// Set timer to 5 seconds (5000)
unsigned long timerDelay = 5000;
void setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
Serial.println("Connecting");
while(WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.print("Connected to WiFi network with IP Address: ");
Serial.println(WiFi.localIP());
Serial.println("Timer set to 5 seconds (timerDelay variable), it will take 5 seconds before publishing the first reading.");
}
void loop() {
//Send an HTTP POST request every 10 minutes
if ((millis() - lastTime) > timerDelay) {
//Check WiFi connection status
if (WiFi.status() == WL_CONNECTED){
HTTPClient http;
String serverPath = serverName "?temperature=24.37";
// Your Domain name with URL path or IP address with path
//http.begin(serverPath.c_str());
http.begin(serverName);
// Send HTTP GET request
int httpResponseCode = http.GET();
if (httpResponseCode>0) {
Serial.print("HTTP Response code: ");
Serial.println(httpResponseCode);
String payload = http.getString();
Serial.println(payload);
} else {
Serial.print("Error code: ");
Serial.println(httpResponseCode);
}
// Free resources
http.end();
} else {
Serial.println("WiFi Disconnected");
}
lastTime = millis();
}
}
Ответ №1:
127.0.0.1 — это сам Arduino, а не ваш локальный сервер.
Каждый хост / компьютер с IP-адресом также имеет IP-адрес 127.0.0.1; это адрес интерфейса обратной связи.
Этот адрес локального хоста всегда относится к текущему компьютеру. У Arduino также есть этот адрес, и вы пытаетесь подключиться к нему.
Используйте IP-адрес вашего XMPP-сервера; сначала выясните, что это за адрес, это работает намного лучше, чем гадать и пытаться.
Комментарии:
1. IP-адрес моего Arduino — 192.168.10.15, а не 127.0.0.1. 127.0.0.1 — это localhost, и на нем работает XAMPP