mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-15 19:42:12 +02:00
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);
|
|
}
|