2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2024-01-03 08:47:06 +01:00
|
|
|
// Copyright © 2014-2024, Benoit BLANCHON
|
2019-05-09 08:33:09 +02:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
|
|
|
|
|
struct Stream {};
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
Stream* stream = 0;
|
2023-07-17 18:15:13 +02:00
|
|
|
JsonDocument doc;
|
2019-05-09 08:33:09 +02:00
|
|
|
deserializeJson(doc, stream);
|
|
|
|
|
}
|