簡體   English   中英

無法使用 Arduino ESP8266 或兼容板連接到 LocalIP 或 Localhost (127.0.0.1)

[英]Cannot connect to LocalIP or Localhost (127.0.0.1) Using Arduino ESP8266 or Compatible Boards

我正在嘗試將我的 Arduino ESP8266 或任何兼容板(如 WeMos mini 或 NodeMCU)與我的本地服務器localhost(127.0.0.1)172.xx.xx.xxx port 80 ,我收到一個httpResponseCode -1 錯誤。 但是如果我將它連接到遠程服務器,我會得到一個httpResponseCode 200 (OK)

我正在運行一個XMPP服務器(甚至用 Coldfusion 服務器測試過)我的代碼如下。 有人可以幫忙嗎?

#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();
  }
}

127.0.0.1 是 Arduino 本身,而不是您的本地服務器。

每個擁有IP地址的主機/計算機也有一個IP地址127.0.0.1; 它是環回接口的地址。

這個本地主機地址總是指當前的計算機 Arduino 也有這個地址,你正試圖連接到它。

使用您的 XMPP 服務器的 IP 地址; 首先找出地址是什么,這比猜測和嘗試要好得多。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM