14 lines
197 B
C
Raw Normal View History

2020-11-14 21:15:33 +01:00
#ifndef _MQTTCOMM_H_
#define _MQTTCOMM_H_
2020-11-10 15:56:07 +01:00
2020-11-14 21:15:33 +01:00
void mqttCommInit();
2020-11-18 14:01:23 +01:00
void mqttPublish(char *topic, char *message);
void mqttPublishf(char *topic, char *messageFormat, ...);
2020-11-14 21:15:33 +01:00
#endif // _MQTTCOMM_H_
2020-11-10 15:56:07 +01:00