platenspeler 45debefd2c All Source Code for release 6 5 anni fa
..
examples 45debefd2c All Source Code for release 6 5 anni fa
fuzzing 45debefd2c All Source Code for release 6 5 anni fa
scripts 45debefd2c All Source Code for release 6 5 anni fa
src 45debefd2c All Source Code for release 6 5 anni fa
test 45debefd2c All Source Code for release 6 5 anni fa
third-party 45debefd2c All Source Code for release 6 5 anni fa
ArduinoJson.h 45debefd2c All Source Code for release 6 5 anni fa
CHANGELOG.md 45debefd2c All Source Code for release 6 5 anni fa
CMakeLists.txt 45debefd2c All Source Code for release 6 5 anni fa
CONTRIBUTING.md 45debefd2c All Source Code for release 6 5 anni fa
LICENSE.md 45debefd2c All Source Code for release 6 5 anni fa
README.md 45debefd2c All Source Code for release 6 5 anni fa
SUPPORT.md 45debefd2c All Source Code for release 6 5 anni fa
appveyor.yml 45debefd2c All Source Code for release 6 5 anni fa
banner.svg 45debefd2c All Source Code for release 6 5 anni fa
keywords.txt 45debefd2c All Source Code for release 6 5 anni fa
library.json 45debefd2c All Source Code for release 6 5 anni fa
library.properties 45debefd2c All Source Code for release 6 5 anni fa

README.md

ArduinoJson


arduino-library-badge Build Status Build Status Coverage Status Star this project

ArduinoJson is a C++ JSON library for Arduino and IoT (Internet Of Things).

Features

  • JSON decoding (comments are supported)
  • JSON encoding (with optional indentation)
  • MessagePack
  • Elegant API, easy to use
  • Fixed memory allocation (zero malloc)
  • No data duplication (zero copy)
  • Portable (written in C++98, can be used in any C++ project)
  • Self-contained (no external dependency)
  • Small footprint
  • Input and output streams
  • 100% code coverage
  • Header-only library
  • MIT License
  • Comprehensive documentation

Compatibility

ArduinoJson works on the following hardware:

ArduinoJson compiles with zero warning on the following compilers, IDEs, and platforms:

Quickstart

Deserialization

Here is a program that parses a JSON document with ArduinoJson.

char json[] = "{\"sensor\":\"gps\",\"time\":1351824120,\"data\":[48.756080,2.302038]}";

DynamicJsonDocument doc(1024);
deserializeJson(doc, json);

JsonObjectRef root = doc.as<JsonObject>();
const char* sensor = root["sensor"];
long time          = root["time"];
double latitude    = root["data"][0];
double longitude   = root["data"][1];

See the tutorial on arduinojson.org

Serialization

Here is a program that generates a JSON document with ArduinoJson:

DynamicJsonDocument doc(1024);

JsonObject root = doc.to<JsonObject>();
root["sensor"] = "gps";
root["time"] = 1351824120;

JsonArray data = root.createNestedArray("data");
data.add(48.756080);
data.add(2.302038);

serializeJson(doc, Serial);
// This prints:
// {"sensor":"gps","time":1351824120,"data":[48.756080,2.302038]}

See the tutorial on arduinojson.org

Documentation

The documentation is available on arduinojson.org, here are some shortcuts:

  • The Examples show how to use the library in various situations.
  • The API Reference contains the description of each class and function.
  • The FAQ has the answer to virtually every question.
  • The ArduinoJson Assistant writes programs for you!

Do you like this library? Please star this project on GitHub!

What? You don't like it but you love it? We don't take donations anymore, but we sell a book, so you can help and learn at the same time!