mirror of
https://github.com/thooge/esp32-nmea2000-obp60.git
synced 2025-12-15 15:03:07 +01:00
9 lines
208 B
C++
9 lines
208 B
C++
#ifndef _GWJSONDOCUMENT_H
|
|
#define _GWJSONDOCUMENT_H
|
|
#include <ArduinoJson.h>
|
|
|
|
class GwJsonDocument : public DynamicJsonDocument{
|
|
public:
|
|
GwJsonDocument(int sz): DynamicJsonDocument(sz){}
|
|
};
|
|
#endif |