bmsd/fermenters.h

Sun, 26 May 2019 16:09:50 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 26 May 2019 16:09:50 +0200
changeset 375
7f5455806f20
parent 0
033898178630
child 679
48f8f3fce7c0
permissions
-rw-r--r--

Reset starter values when saving a product without a starter. The yeast calculator only calculates a starter when enabled. Calculate the cells/ml/plato field. Disable starter buttons when the product brewday is over.

/**
 * @file fermenters.h
 */

#ifndef _FERMENTERS_H
#define _FERMENTERS_H

void fermenter_dump(sys_fermenter_list *fermenter);

/**
 * @brief Birth of a fermenter 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 fermenter type and name.
 * @param payload The JSON formatted payload with the fermenter details.
 */
void fermenter_birth_data(char *topic, char *payload);

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

/**
 * @brief Data logging from fermenters.
 * @param topic The MQTT topic string, contains the fermenter type and name.
 * @param payload The JSON formatted payload with the fermenter details.
 */
void fermenter_log(char *topic, char *payload);


#endif

mercurial