mirror of
https://github.com/rstrouse/ESPSomfy-RTS.git
synced 2025-12-12 10:32:10 +01:00
31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
#ifndef MQTT_H
|
|
#define MQTT_H
|
|
#include <Arduino.h>
|
|
#include <PubSubClient.h>
|
|
#include <ArduinoJson.h>
|
|
class MQTTClass {
|
|
public:
|
|
uint64_t lastConnect = 0;
|
|
bool suspended = false;
|
|
char clientId[32] = {'\0'};
|
|
bool begin();
|
|
bool loop();
|
|
bool end();
|
|
bool connect();
|
|
bool disconnect();
|
|
bool connected();
|
|
void reset();
|
|
bool unpublish(const char *topic);
|
|
bool publish(const char *topic, const char *payload, bool retain = false);
|
|
bool publish(const char *topic, uint8_t val, bool retain = false);
|
|
bool publish(const char *topic, int8_t val, bool retain = false);
|
|
bool publish(const char *topic, uint32_t val, bool retain = false);
|
|
bool publish(const char *topic, uint16_t val, bool retain = false);
|
|
bool publish(const char *topic, bool val, bool retain = false);
|
|
bool publishBuffer(const char *topic, uint8_t *data, uint16_t len, bool retain = false);
|
|
bool publishDisco(const char *topic, JsonObject &obj, bool retain = false);
|
|
bool subscribe(const char *topic);
|
|
bool unsubscribe(const char *topic);
|
|
static void receive(const char *topic, byte *payload, uint32_t length);
|
|
};
|
|
#endif
|