aboutsummaryrefslogtreecommitdiffstats
path: root/include/mqtt.h
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2025-09-04 01:11:11 +0200
committerFilip Wandzio <contact@philw.dev>2025-09-04 01:11:11 +0200
commite00f3a9ede1b8e46b480bd68daf48da0bb08acae (patch)
treef666b9aa4d0a03246ab9880e11802d91a23ab1e7 /include/mqtt.h
downloade1-e00f3a9ede1b8e46b480bd68daf48da0bb08acae.tar.gz
e1-e00f3a9ede1b8e46b480bd68daf48da0bb08acae.zip
Initial
Diffstat (limited to 'include/mqtt.h')
-rw-r--r--include/mqtt.h15
1 files changed, 15 insertions, 0 deletions
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 @@
1#ifndef MQTT_H
2#define MQTT_H
3
4#include "mqtt_client.h"
5
6/**
7 * @brief Starts the MQTT application.
8 *
9 * Initializes the MQTT client, registers event handlers,
10 * and starts the MQTT client. Also creates the publisher task
11 * that periodically sends messages.
12 */
13void mqtt_app_start(void);
14
15#endif