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 2025-06-15 11:37:51.
|
|
*
|
|
* @author Marcel Peterkau
|
|
* @date 15.06.2025
|
|
*/
|
|
|
|
#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: 4702cb49ea55617cbb34715164810bb58d3c3f46fb1653b6f47bd4fd9cb0031e
|