mqtt.h 131 B

123456789
  1. #ifndef __MQTT_H__
  2. #define __MQTT_H__
  3. void mqtt_init(void);
  4. void sendMQTTMessage(const char * topic, const char * data);
  5. #endif