mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 03:52:16 +02:00
13 lines
204 B
C++
13 lines
204 B
C++
![]() |
// ArduinoJson - arduinojson.org
|
||
|
// Copyright Benoit Blanchon 2014-2021
|
||
|
// MIT License
|
||
|
|
||
|
#include <ArduinoJson.h>
|
||
|
|
||
|
// See issue #1498
|
||
|
|
||
|
int main() {
|
||
|
DynamicJsonDocument doc(1024);
|
||
|
doc["dummy"] = 'A';
|
||
|
}
|