-
Notifications
You must be signed in to change notification settings - Fork 238
/
Copy pathConnectivity.cpp
85 lines (71 loc) · 2.27 KB
/
Connectivity.cpp
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
#include "Connectivity.h"
Connectivity::Connectivity(){
}
void Connectivity::begin(){
// Setup connection
mqttClientID = WiFi.macAddress();
mqttClient.ref = this;
mqttClient.begin(mqttServer.c_str(), mqttPort, networkClient);
reconnect();
}
void Connectivity::loop(){
mqttClient.loop();
// Stay connected
if (!mqttClient.connected()) {
reconnect();
}
// Send ping now and then
if (millis() > nextStatusMessage) {
nextStatusMessage = millis()+10000;
sendStatus();
}
}
bool Connectivity::reconnect(){
if( WiFi.status() != WL_CONNECTED )
{
WiFi.mode(WIFI_STA);
WiFi.begin(ssid.c_str(), password.c_str());
while (WiFi.status() != WL_CONNECTED){
Serial.print(".");
delay(500);
}
log_i("Connected to %s", WiFi.SSID().c_str());
}
// Connect to MQTT
mqttClient.onMessageAdvanced( messageReceived );
bool ret = mqttClient.connect(mqttClientID.c_str(), mqttUsername.c_str(), mqttPassword.c_str());
if( ret )
{
String topic = String("/device/") + mqttClientID+"/update";
Serial.print("Subscribing to ");
Serial.println(topic.c_str());
mqttClient.subscribe( topic.c_str() );
Serial.print("Open a tool like MQTT Explorer and send a message to ");
Serial.println(topic.c_str());
Serial.println("You should then see the message on the Serial Monitor (if you open it)");
sendStatus();
}
return ret;
}
void Connectivity::sendStatus(){
String topic = String("/device/") + mqttClientID+"/status";
String payload = "{\"status\": \"online\"}";
mqttClient.publish(topic.c_str(), payload.c_str());
}
// See https://github.com/256dpi/arduino-mqtt/pull/220 for details
MQTTClientCallbackAdvancedFunction Connectivity::messageReceived(MQTTClient *client, char topic[], char bytes[], int length)
{
String cTopic = topic;
String cPayload = bytes;
Serial.print("messageReceived on topic: ");
Serial.print(cTopic);
Serial.print(" payload: ");
Serial.println(cPayload);
auto parent = (Connectivity *)client->ref;
if( parent != nullptr )
{
Serial.print("RefTest: ");
Serial.println(parent->mqttServer);
}
return NULL;
}