main/task_mqtt.h

Thu, 20 Apr 2023 15:19:31 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 20 Apr 2023 15:19:31 +0200
changeset 36
7b5c1fbeda7b
parent 15
64028e178ff1
permissions
-rw-r--r--

Moved the kicad drawing into the project.

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