2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2021-01-25 09:14:15 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2021
|
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);
|
|
|
|
|
}
|