11 lines
146 B
C
11 lines
146 B
C
#ifndef MQTT_H
|
|
#define MQTT_H
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
void mqttLoop();
|
|
|
|
bool mqttPublish(const char *topic, const JsonDocument& json);
|
|
|
|
#endif
|