mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-11 20:48:16 +08:00
14 lines
213 B
C
14 lines
213 B
C
#ifndef __USER_MQTT_CLIENT_H_
|
|
#define __USER_MQTT_CLIENT_H_
|
|
|
|
|
|
#include "mico.h"
|
|
|
|
|
|
|
|
extern OSStatus user_mqtt_init(void);
|
|
extern OSStatus user_mqtt_send( char *arg );
|
|
extern bool user_mqtt_isconnect(void);
|
|
|
|
#endif
|