14 lines
331 B
C
Executable File
14 lines
331 B
C
Executable File
#if !defined(__MQTT_CLIENT_H__)
|
|
#define __MQTT_CLIENT_H__
|
|
|
|
#define USE_MOSQUITTO_LIB
|
|
|
|
int MqttClient_Connect();
|
|
void MqttClient_Close();
|
|
void MqttClient_Refresher();
|
|
void MqttClient_Publisher();
|
|
void MqttClient_Publish_MotorGear(int iMotorIndex, int iGear);
|
|
void MqttClient_Publish_MotorPower(int iMotorIndex, int iPower);
|
|
|
|
#endif
|