#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