bmsd/nodes.h

Wed, 27 Feb 2019 22:13:07 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 27 Feb 2019 22:13:07 +0100
changeset 299
047ead629d4a
parent 0
033898178630
child 384
442d23455ae4
permissions
-rw-r--r--

Accept yeast temperature limits from thermferm via MQTT. Send yeat temperature ranges to thermferm together with the beer parameters. Store yeast temperature limits in the mon_fermenters database table. The monitor fermenters screen adjusts the temperature color ranges.

/**
 * @file nodes.h
 */

#ifndef _NODES_H
#define _NODES_H

void node_dump(sys_node_list *node);

/**
 * @brief Birth of a node or data update. Create it in the database if 
 *        never seen before, else just update the database entry.
 * @param topic The MQTT topic string, contains the node type and name.
 * @param payload The JSON formatted payload with the node details.
 */
void node_birth_data(char *topic, char *payload);

/**
 * @brief Death of a node. Mark it offline in the database.
 * @param topic The MQTT topic string, contains the node type and name.
 */
void node_death(char *topic);

#endif

mercurial