mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-06 19:46:54 +03:00
32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
#ifdef ENABLE_MQTT
|
|
|
|
#pragma once
|
|
|
|
#ifndef INTERFACE_MQTT_H
|
|
#define INTERFACE_MQTT_H
|
|
|
|
#include <string>
|
|
#include <map>
|
|
#include <functional>
|
|
|
|
bool MQTT_Configure(std::string _mqttURI, std::string _clientid, std::string _user, std::string _password,
|
|
std::string _maintopic, std::string _domoticz_in_topic, std::string _lwt, std::string _lwt_connected, std::string _lwt_disconnected,
|
|
std::string _cacertfilename, bool _validateServerCert, std::string _clientcertfilename, std::string _clientkeyfilename,
|
|
int _keepalive, bool SetRetainFlag, void *callbackOnConnected);
|
|
int MQTT_Init();
|
|
void MQTTdestroy_client(bool _disable);
|
|
|
|
bool MQTTPublish(std::string _key, std::string _content, int qos, bool retained_flag = 1); // retained Flag as Standart
|
|
|
|
bool getMQTTisEnabled();
|
|
bool getMQTTisConnected();
|
|
|
|
void MQTTregisterConnectFunction(std::string name, std::function<void()> func);
|
|
void MQTTunregisterConnectFunction(std::string name);
|
|
void MQTTregisterSubscribeFunction(std::string topic, std::function<bool(std::string, char*, int)> func);
|
|
void MQTTdestroySubscribeFunction();
|
|
void MQTTconnected();
|
|
|
|
#endif //INTERFACE_MQTT_H
|
|
#endif //#ENABLE_MQTT
|