diff -r 9c41e865144a -r a8a6901b5a99 bmsd/co2meters.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bmsd/co2meters.h Thu Oct 10 20:42:39 2019 +0200 @@ -0,0 +1,26 @@ +/** + * @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