main/task_mqtt.h

Fri, 31 Mar 2023 21:12:39 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 31 Mar 2023 21:12:39 +0200
changeset 8
115e93bf8796
parent 7
2b337dd92f25
child 15
64028e178ff1
permissions
-rw-r--r--

Added namespace and output variables in NVS.

/**
 * @file task_mqtt.h
 * @brief The FreeRTOS task to maintain MQTT connections.
 */

#ifndef	_TASK_MQTT_H
#define	_TASK_MQTT_H



/**
 * @brief Request a MQTT connection
 * @param state Request of disconnect a connection.
 */
void connect_mqtt(bool state);


/**
 * @brief Check if MQTT is connected
 * @return Returns true if MQTT is connected
 */
bool ready_mqtt(void);


/**
 * @brief Wait for disconnect with timeout.
 * @param time Timeout in milliseconds.
 */
void wait_mqtt(int time);


/**
 * @brief Publish
 */
void publish(void);


/**
 * @brief The FreeRTOS task to run MQTT connections.
 * @param pvParameters Parameters for the task.
 */
void task_mqtt(void *pvParameters);


#endif

mercurial