main/task_mqtt.h

Sun, 13 Oct 2019 12:24:14 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 13 Oct 2019 12:24:14 +0200
changeset 11
e33f2d325d15
parent 9
a85995941d0d
child 37
358bbd5b608e
permissions
-rw-r--r--

Experimental mqtt published messages state counter

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


void publishNode(void);
void publishUnits(void);
void publishLogs(void);


/**
 * @brief The FreeRTOS task to run MQTT connections.
 */
void task_mqtt(void *);


#endif

mercurial