2019-05-09 08:33:09 +02:00
|
|
|
// ArduinoJson - arduinojson.org
|
2020-01-09 15:48:38 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2020
|
2019-05-09 08:33:09 +02:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
|
|
|
|
|
struct Stream {};
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
Stream* stream = 0;
|
|
|
|
|
DynamicJsonDocument doc(1024);
|
|
|
|
|
deserializeJson(doc, stream);
|
|
|
|
|
}
|