10 lines
191 B
C
10 lines
191 B
C
|
#ifndef JsonSerializer_h
|
||
|
#define JsonSerializer_h
|
||
|
|
||
|
#include <ArduinoJson.h>
|
||
|
|
||
|
template <class T>
|
||
|
using JsonSerializer = void (*)(T& settings, JsonObject& root);
|
||
|
|
||
|
#endif // end JsonSerializer
|