Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Class implementation example #313

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions examples/BasicClassExample/BasicClassExample.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* Basic example of using the library arduino-mqtt by 256dpi as a class
*
* Edit platformio.ini to match your board. By default it's set to be
* used with an Adafruit Feather Esp32-S3 with no psram.
*
* Edit the server settings in Connectivity.h to the Broker/server you
* want to use. There's more details in the README.md file.
*/

#include <Arduino.h>
#include "Connectivity.h"

Connectivity connection;

void setup() {
Serial.begin(115200);
delay(3000); // Give Serial a little time to connect
connection.begin();
}

void loop() {
connection.loop(); // Stay connected
}
85 changes: 85 additions & 0 deletions examples/BasicClassExample/Connectivity.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,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;
}
32 changes: 32 additions & 0 deletions examples/BasicClassExample/Connectivity.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

#ifndef MQTT_CONNECTIVITY_h
#define MQTT_CONNECTIVITY_h

#include <WiFi.h>
#include <MQTT.h>

class Connectivity {
public:
Connectivity();
void begin();
void loop();
void sendStatus();
bool reconnect();
static MQTTClientCallbackAdvancedFunction messageReceived(MQTTClient *client, char topic[], char bytes[], int length);
private:
// Edit your server settings here
WiFiClient networkClient;
String ssid = "EnterYourSsidHere";
String password = "EnterYourWifiPasswordHere";

MQTTClient mqttClient;
String mqttServer = "test.mosquitto.org";
String mqttUsername = "";
String mqttPassword = "";
String mqttClientID = "undefined";
int mqttPort = 1883;

unsigned long nextStatusMessage = 0;
};

#endif // MQTT_CONNECTIVITY_h