bmsd/mqtt.h

Sun, 13 Jun 2021 19:36:42 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 13 Jun 2021 19:36:42 +0200
changeset 753
a59ecd6d72f4
parent 679
48f8f3fce7c0
permissions
-rw-r--r--

Added bug remark

#ifndef _MQTT_H
#define	_MQTT_H

#define STATUS_CONNECTING 0
#define STATUS_CONNACK_RECVD 1
#define STATUS_WAITING 2


/**
 * @brief Publish MQTT message.
 * @param topic The topic part of the message.
 * @param payload The payload part of the message.
 */
void mqtt_publish(char *topic, char *payload);

/**
 * @brief Connect to the MQTT server.
 * @return 0 if success, else the connection failed.
 */
int mqtt_connect(void);

/**
 * @brief Disconnect from the MQTT server.
 */
void mqtt_disconnect(void);

#endif

mercurial