15 lines
329 B
C
15 lines
329 B
C
#ifndef __MQTT_H
|
|
#define __MQTT_H
|
|
|
|
#include "mgos.h"
|
|
#include "mgos_mqtt.h"
|
|
|
|
#define MQTT_TOPIC_PREFIX ""
|
|
#define MQTT_TOPIC_BROADCAST_CMD "/mongoose/broadcast"
|
|
#define MQTT_TOPIC_BROADCAST_STAT "/mongoose/broadcast/stat"
|
|
|
|
void mqtt_init();
|
|
void mqtt_publish_stat(const char *stat, const char *msg);
|
|
|
|
#endif // __MQTT_H
|