bmsd/ispindels.h

Tue, 14 Feb 2023 11:29:01 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 14 Feb 2023 11:29:01 +0100
changeset 844
a6ee7b5b036b
parent 680
0bb48333d133
permissions
-rw-r--r--

Version 0.3.43 bmsd if there is no ssid received from a node message then send '' to the mon_nodes table in the database instead of (null).

/**
 * @file ispindels.h
 */

#ifndef _ISPINDEL_H
#define _ISPINDEL_H

void ispindel_dump(sys_ispindel_list *ispindel);

/**
 * @brief Process received command from a websocket.
 * @param payload The received data in JSON format.
 */
void ispindel_ws_receive(char *payload);

/**
 * @brief Messages received from a iSpindel using the MQTT sender.
 *        A new node is created if this is the first message of the
 *        iSpindel, else the last seen time is updated. Then the last
 *        actual state is recorded. A log line is written when a beer
 *        is assigned.
 * @param topic The MQTT topic string, contains the ispindel type and name
 * @param payload The value for the selected keyword.
 */
void ispindel_birth_data(char *topic, char *payload);


#endif

mercurial