From 1ba21da6cbc63c0c549fb92731e25bedc482eb51 Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Thu, 4 Sep 2025 22:25:39 +0200 Subject: Unify the directory, add new analysis methods, unify the code style Signed-off-by: Filip Wandzio --- firmware/include/mqtt.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 firmware/include/mqtt.h (limited to 'firmware/include/mqtt.h') diff --git a/firmware/include/mqtt.h b/firmware/include/mqtt.h new file mode 100644 index 0000000..4f46b5a --- /dev/null +++ b/firmware/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