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-05-30 22:54:25.
|
||
|
*
|
||
|
* @author Marcel Peterkau
|
||
|
* @date 30.05.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: 735cd4daf9a46bd773bdf5e6cd5a58d61b0d877196399bc2784a0d0ea7af717d
|