24 lines
485 B
C
24 lines
485 B
C
|
/**
|
||
|
* @file struct2json.h
|
||
|
*
|
||
|
* @brief Header file for converting structs to JSON objects.
|
||
|
*
|
||
|
* @note This file is auto-generated by a script on 2024-01-09 20:41:57.
|
||
|
*
|
||
|
* @author Marcel Peterkau
|
||
|
* @date 09.01.2024
|
||
|
*/
|
||
|
|
||
|
#ifndef _STRUCT2JSON_H_
|
||
|
#define _STRUCT2JSON_H_
|
||
|
|
||
|
#include <Arduino.h>
|
||
|
#include <ArduinoJson.h>
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
void generateJsonObject_LubeConfig(JsonObject& data);
|
||
|
void generateJsonObject_PersistenceData(JsonObject& data);
|
||
|
|
||
|
|
||
|
#endif /* _STRUCT2JSON_H_ */
|