From e00f3a9ede1b8e46b480bd68daf48da0bb08acae Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Thu, 4 Sep 2025 01:11:11 +0200 Subject: Initial --- include/mqtt.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/mqtt.h (limited to 'include/mqtt.h') diff --git a/include/mqtt.h b/include/mqtt.h new file mode 100644 index 0000000..4f46b5a --- /dev/null +++ b/include/mqtt.h @@ -0,0 +1,15 @@ +#ifndef MQTT_H +#define MQTT_H + +#include "mqtt_client.h" + +/** + * @brief Starts the MQTT application. + * + * Initializes the MQTT client, registers event handlers, + * and starts the MQTT client. Also creates the publisher task + * that periodically sends messages. + */ +void mqtt_app_start(void); + +#endif -- cgit v1.2.3