MQTT Client for ESP32

Requirements

  • Publish a message from ESP32
  • Subscribe a topic

Software

Download MQTT Client Opensource Code

Clone source code from https://github.com/knolleary/pubsubclient.git.
Copy PubSubClient.cpp and PubSubClient.h from the original src/ to your ESP32 project’s src/.

Program Yourself Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#include <Arduino.h>
#include "WiFi.h"
#include "PubSubClient.h"
// Update these with values suitable for your network.

#define BUILTIN_LED 2
const char* ssid = "Xiaomi_kaylordut";
const char* password = "kaylordut.com";
const char* mqtt_server = "your.mqtt.server.address";
const int mqtt_port = 11111;
const char* mqtt_user = "username";
const char* mqtt_passwd = "password";

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

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

randomSeed(micros());

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("] ");
char _msg[length + 1];
for (int i = 0; i < length; i++) {
Serial.print((char)payload[i]);
_msg[i] = (char) payload[i];
}
Serial.println();
Serial.print("msg = ");
_msg[length] = 0;
Serial.println(_msg);


if (std::string(_msg) == "ON" || std::string(_msg) == "On" || std::string(_msg) == "on" ) {
digitalWrite(BUILTIN_LED, HIGH);

} else if(std::string(_msg) == "OFF" || std::string(_msg) == "Off" || std::string(_msg) == "off" ){
digitalWrite(BUILTIN_LED, LOW);
}

}

void reconnect() {
// Loop until we're reconnected
while (!client.connected()) {
Serial.print("Attempting MQTT connection...");
// Create a random client ID
String clientId = "ESP32Client-";
clientId += String(random(0xffff), HEX);
// Attempt to connect
if (client.connect(clientId.c_str(), mqtt_user, mqtt_passwd)) {
Serial.println("connected");
// Once connected, publish an announcement...
client.publish("outTopic", "hello world");
// ... and resubscribe
client.subscribe("inTopic");
} else {
Serial.print("failed, rc=");
Serial.print(client.state());
Serial.println(" try again in 5 seconds");
// Wait 5 seconds before retrying
delay(5000);
}
}
}

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

void loop() {

if (!client.connected()) {
reconnect();
}
client.loop();

long now = millis();
if (now - lastMsg > 2000) {
lastMsg = now;
++value;
snprintf (msg, 50, "hello world #%ld", value);
Serial.print("Publish message: ");
Serial.println(msg);
client.publish("outTopic", msg);
}
}

Test


If you can’t open Youtube, Pls click this link.

0%