bmsd/co2meters.h

Sat, 18 Apr 2020 15:56:40 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 18 Apr 2020 15:56:40 +0200
changeset 657
a5ade45597d8
parent 502
a8a6901b5a99
child 678
14322825cb3d
permissions
-rw-r--r--

More code cleanup

/**
 * @file co2meters.h
 */

#ifndef _CO2METERS_H
#define _CO2METERS_H

void co2meter_dump(sys_co2meter_list *co2meter);

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

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


#endif

mercurial