2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2021-02-07 11:40:14 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2021
|
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
|
|
|
// See issue #1498
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
DynamicJsonDocument doc(1024);
|
|
|
|
doc["dummy"] = 'A';
|
|
|
|
}
|