Difference between revisions of "WeMOS: MQTT"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 32: | Line 32: | ||
Serial.println("Connecting to MQTT..."); | Serial.println("Connecting to MQTT..."); | ||
− | + | // if (client.connect("ESP8266Client", mqttUser, mqttPassword )) { | |
− | + | if (client.connect("ESP8266Client" )) { | |
+ | |||
Serial.println("connected"); | Serial.println("connected"); | ||
} else { | } else { | ||
− | + | Serial.print("failed with state "); | |
− | + | Serial.print(client.state()); | |
− | |||
delay(2000); | delay(2000); | ||
− | |||
} | } | ||
} | } | ||
− | |||
client.publish("test", "Hello from ESP8266"); | client.publish("test", "Hello from ESP8266"); | ||
client.subscribe("test"); | client.subscribe("test"); | ||
− | |||
} | } | ||
Revision as of 11:50, 18 November 2019
Sumber: https://techtutorialsx.com/2017/04/09/esp8266-connecting-to-mqtt-broker/
Code
#include <ESP8266WiFi.h> #include <PubSubClient.h> const char* ssid = "ODC3"; const char* password = "ONNOWPURBO1781962"; const char* mqttServer = "192.168.0.163"; const int mqttPort = 1883; const char* mqttUser = ""; const char* mqttPassword = ""; WiFiClient espClient; PubSubClient client(espClient); void setup() { Serial.begin(115200); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.println("Connecting to WiFi.."); } Serial.println("Connected to the WiFi network"); client.setServer(mqttServer, mqttPort); client.setCallback(callback); while (!client.connected()) { Serial.println("Connecting to MQTT..."); // if (client.connect("ESP8266Client", mqttUser, mqttPassword )) { if (client.connect("ESP8266Client" )) { Serial.println("connected"); } else { Serial.print("failed with state "); Serial.print(client.state()); delay(2000); } } client.publish("test", "Hello from ESP8266"); client.subscribe("test"); } void callback(char* topic, byte* payload, unsigned int length) { Serial.print("Message arrived in topic: "); Serial.println(topic); Serial.print("Message:"); for (int i = 0; i < length; i++) { Serial.print((char)payload[i]); } Serial.println(); Serial.println("-----------------------"); } void loop() { client.loop(); }