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-01-30 20:29:34.
|
|
*
|
|
* @author Marcel Peterkau
|
|
* @date 30.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: 59f35aadffd0bbef253210ea2fbaaf9a515553a2e3cc9bf4cfa2819b63c969ce
|