26 lines
576 B
C
26 lines
576 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-06-06 18:52:33.
|
|
*
|
|
* @author Marcel Peterkau
|
|
* @date 06.06.2024
|
|
*/
|
|
|
|
#ifndef _STRUCT2JSON_H_
|
|
#define _STRUCT2JSON_H_
|
|
|
|
#include <Arduino.h>
|
|
#include <ArduinoJson.h>
|
|
|
|
#include "eeprom.h"
|
|
|
|
void generateJsonObject_ConfigData(JsonObject data);
|
|
void generateJsonObject_PersistenceData(JsonObject data);
|
|
|
|
|
|
#endif /* _STRUCT2JSON_H_ */
|
|
|
|
// CODEGENERATOR_CHECKSUM: 3a3fd3024dd9dd769ff5d62f61b3ba1b781b7d06e7568a1ddac56d193dba9ee5
|