2017-09-07 6 views
-1

오늘 NodeMCU를 얻었고 즉시 코딩을 시작했습니다. 내 WiFi와 MQTT 서버에 연결하려고했습니다.NodeMCU가 이상한 IP 주소를 얻습니다.

이 예제에서는 PubSub 예제를 사용했습니다.

시리얼 모니터에서 WiFi로 성공적으로 연결되었다는 메시지가 나타나지만 IP 172.20.10.6이 표시됩니다. 그러나 우리는 192.168 ... 네트워크를 가지고 있습니다.

그런 다음 MQTT 서버에 연결하려고하면 찾지 못합니다. NodeMCU에 정적 IP를 주려고하면 성공적으로 연결되었다고 말하고 정적 IP를 보여 주지만 여전히 MQTT 서버에 연결할 수 없습니다.

NodeMCU를 ping 할 수 없으며 스마트 폰 앱 "핑 (Fing)"에서 찾을 수 없습니다.

#include <ESP8266WiFi.h> 
#include <PubSubClient.h> 

const char* ssid = "myssid"; 
const char* password = "mypw"; 
const char* mqtt_server = "192.168.42.131"; 

WiFiClient espClient; 
PubSubClient client(espClient); 
long lastMsg = 0; 
char msg[50]; 
int value = 0; 

void setup() { 
    pinMode(BUILTIN_LED, OUTPUT); 
    // Initialize the BUILTIN_LED pin as an output 
    Serial.begin(115200); 
    setup_wifi(); 
    client.setServer(mqtt_server, 1883); 
    client.setCallback(callback); 
} 

void setup_wifi() { 
    delay(10); 
    // We start by connecting to a WiFi network 
    Serial.println(); 
    Serial.print("Connecting to "); 
    Serial.println(ssid); 
    WiFi.begin(ssid, password); 
    while (WiFi.status() != WL_CONNECTED) { 
    delay(500); 
    Serial.print("."); 
    } 
    Serial.println(""); 
    Serial.println("WiFi connected"); 
    Serial.println("IP address: "); 
    Serial.println(WiFi.localIP()); 
} 

void callback(char* topic, byte* payload, unsigned int length) { 
    Serial.print("Message arrived ["); 
    Serial.print(topic); 
    Serial.print("] "); 
    for (int i = 0; i < length; i++) { 
    Serial.print((char)payload[i]); 
    } 
    Serial.println(); 
    // Switch on the LED if an 1 was received as first character 
    if ((char)payload[0] == '1') { 
    digitalWrite(BUILTIN_LED, LOW); 
    // Turn the LED on (Note that LOW is the voltage level 
    // but actually the LED is on; this is because 
    // it is active low on the ESP-01) 
    } else { 
    digitalWrite(BUILTIN_LED, HIGH); 
    // Turn the LED off by making the voltage HIGH 
    } 
} 

void reconnect() { 
    // Loop until we're reconnected 
    while (!client.connected()) { 
    Serial.print("Attempting MQTT connection..."); 
    // Attempt to connect 
    if (client.connect("ESP8266Client")) { 
     Serial.println("connected"); 
     // Once connected, publish an announcement... 
     //client.publish("outTopic", "hello world"); 
     // ... and resubscribe 
     client.subscribe("mathistest"); 
    } else { 
     Serial.print("failed, rc="); 
     Serial.print(client.state()); 
     Serial.println(" try again in 5 seconds"); 
     // Wait 5 seconds before retrying 
     delay(5000); 
    } 
    } 
} 
void loop() { 
    if (!client.connected()) { 
    reconnect(); 
    } 
    client.loop(); 
    long now = millis(); 
    if (now - lastMsg > 2000) { 
    lastMsg = now; 
    ++value; 
    snprintf (msg, 75, "hello world #%ld", value); 
    } 
} 
+0

질문을 [arduino.se]로 이동하십시오. 나는 당신이 거기서 대답을 얻을 가능성이 더 높다고 생각합니다. –

답변

0

대부분의 경우 DHCP 오류가 발생했을 수 있습니다.

172.20.x.x 주소는 라우팅 할 수없는 IP 주소 (https://www.lifewire.com/what-is-a-private-ip-address-2625970 참조)이며 DHCP 코드는 주소 지정이 실패 할 때 해당 주소를 사용할 것입니다.

Wi-Fi 네트워크에 올바른 SSID 및 암호로 연결하지 않아서 DHCP가 실패 할 가능성이 큽니다.