-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmqttclient.h
197 lines (172 loc) · 3.99 KB
/
mqttclient.h
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/**
* Copyright (c) 2020 panStamp <contact@panstamp.com>
*
* This file is part of the RESPIRA project.
*
* panStamp is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* any later version.
*
* panStamp is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with panStamp; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*
* Author: Daniel Berenguer
* Creation date: Oct 9 2020
*/
#ifndef _MQTT_CLIENT_H
#define _MQTT_CLIENT_H
#ifdef ESP32
#include <WiFi.h>
#else
#include <WiFiClient.h>
#endif
#include <PubSubClient.h>
#define MQTT_TOPIC_LENGTH 64 // Max topic length
#define LED_PIN 2
enum MQTT_EVENT
{
MQTT_EVENT_NONE = 0,
MQTT_EVENT_TIMEOUT,
MQTT_EVENT_CONENCTED
};
/**
* MQTTCLIENT
*/
class MQTTCLIENT
{
private:
/**
* Wifi client
*/
WiFiClient espClient;
/**
* MQTT client
*/
PubSubClient client;
/**
* MQTT broker
*/
char broker[64];
/**
* MQTT port
*/
uint16_t port;
/**
* MQTT client ID
*/
char clientId[32];
/**
* Subscription topic
*/
char subscriptionTopic[MQTT_TOPIC_LENGTH];
/**
* Reconnect to MQTT broker
*
* @return event code
*/
inline MQTT_EVENT reconnect(void)
{
uint8_t tries = 6;
// Loop until we're reconnected
while (!client.connected())
{
// Attempt to connect
if (client.connect(clientId)) // Anonymous connection to broker
//if (client.connect(deviceId, mqtt_user, mqtt_password)) // Authenticated connection with broker
{
// Subscribe to the main topic
client.subscribe(subscriptionTopic);
return MQTT_EVENT_CONENCTED;
}
else
{
if (tries-- == 0)
return MQTT_EVENT_TIMEOUT;
// Wait 5 seconds before retrying
digitalWrite(LED_PIN, HIGH);
delay(2500);
digitalWrite(LED_PIN, LOW);
delay(2500);
}
}
return MQTT_EVENT_NONE;
}
public:
/**
* Class constructor
*
* @param mqttBroker : MQTT broker URL
* @param mqttPort : MQTT port
*/
inline MQTTCLIENT(const char *mqttBroker, const uint16_t mqttPort=1883) : client(espClient)
{
strcpy(broker, mqttBroker);
port = mqttPort;
}
/**
* begin
*
* Start client
*
* @param id : client ID
*
* @return True in case of connection success
*/
bool begin(char *id);
/**
* attachInterrupt
*
* Declare custom ISR, to be called whenever a MQTT packet is received
*
* @param funct pointer to the custom function
*/
void attachInterrupt(void (*funct)(char*, char*));
/**
* subscribe
*
* Subscribe to topic
*
* @param topic : MQTT subscription topic
*/
inline void subscribe(char *topic)
{
strcpy(subscriptionTopic, topic);
}
/**
* handle
*
* Handle MQTT client connectivity
*
* @return event code
*/
inline MQTT_EVENT handle(void)
{
MQTT_EVENT ret = MQTT_EVENT_NONE;
if (!client.connected())
ret = reconnect();
client.loop();
return ret;
}
/**
* publish
*
* Publish MQTT message
*
* @param topic : MQTT topic
* @param payload : MQTT payload
*/
void publish(char *topic, char *payload)
{
// Publish MQTT message
client.publish(topic, payload);
}
};
#endif