Kommunikation hat funktioniert

This commit is contained in:
Bernhard
2025-12-06 19:20:49 +01:00
commit 9b3c4b3fd2
13 changed files with 1115 additions and 0 deletions

13
mqtt/mqtt_client.h Executable file
View File

@@ -0,0 +1,13 @@
#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