forked from bblanchon/ArduinoJson
14 lines
235 B
C++
14 lines
235 B
C++
![]() |
// ArduinoJson - arduinojson.org
|
||
|
// Copyright Benoit Blanchon 2014-2019
|
||
|
// MIT License
|
||
|
|
||
|
#include <ArduinoJson.h>
|
||
|
|
||
|
struct Stream {};
|
||
|
|
||
|
int main() {
|
||
|
Stream* stream = 0;
|
||
|
DynamicJsonDocument doc(1024);
|
||
|
deserializeJson(doc, stream);
|
||
|
}
|