26 lines
578 B
C
26 lines
578 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-10 18:01:52.
|
|
*
|
|
* @author Marcel Peterkau
|
|
* @date 10.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_ */
|
|
|
|
// CODEGENERATOR_CHECKSUM: 9e8dd21170fd6ef8fbf8c4b156d9af751836a76081f811bf0e3ab2b1eb8ee48c
|