mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
427 B
15 lines
427 B
#ifdef MQTT
|
|
#ifndef MQTT_CLIENT_H
|
|
#define MQTT_CLIENT_H
|
|
#include "mqtt.h"
|
|
|
|
extern MQTT_Client mqttClient;
|
|
extern char* statusTopicStr;
|
|
void mqtt_client_init();
|
|
void mqtt_client_on_connected(MqttCallback connectedCb);
|
|
void mqtt_client_on_disconnected(MqttCallback disconnectedCb);
|
|
void mqtt_client_on_published(MqttCallback publishedCb);
|
|
void mqtt_client_on_data(MqttDataCallback dataCb);
|
|
|
|
#endif //MQTT_CLIENT_H
|
|
#endif // MQTT
|
|
|