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