JMmqtt.h 275 B

1234567891011
  1. #ifndef _JM_MQTT_H_
  2. #define _JM_MQTT_H_
  3. #include "pxEpoll.h"
  4. int MQTT_connect();
  5. void MQTT_publish(char *topic,char *message);
  6. void MQTT_publishBytes(char *topic,char *message,int len);
  7. void MQTT_disConnectRemoteControl();
  8. void mqttTimer(PXTIMER_S *timer);
  9. #endif