mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-06-25 01:11:35 +02:00
14 lines
234 B
C++
14 lines
234 B
C++
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2025, Benoit BLANCHON
|
|
// MIT License
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
struct Stream {};
|
|
|
|
int main() {
|
|
Stream* stream = 0;
|
|
JsonDocument doc;
|
|
deserializeJson(doc, stream);
|
|
}
|