Skip to content

ArduinoJson 3.3

Compare
Choose a tag to compare
@bblanchon bblanchon released this 01 Sep 19:46

Changes compared to 3.2:

  • Added indented output for the JSON generator, see example bellow.
  • Added IndentedPrint, a decorator for Print to allow indented output

Example:

JsonOject<2> json;
json["key"] = "value";
json.prettyPrintTo(Serial);

How to install?

To use this library with the Arduino IDE, you need to unzip the attached file into

<path_to_your_sketches>/libraries/