main/task_mqtt.h

Sun, 02 Apr 2023 09:33:20 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 02 Apr 2023 09:33:20 +0200
changeset 10
eee990609da7
parent 7
2b337dd92f25
child 15
64028e178ff1
permissions
-rw-r--r--

Fixed start of json status message.

/**
 * @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