FloKra d9e47579fd 0.5.0 2020-01-09 пре 4 година
..
.github d9e47579fd 0.5.0 2020-01-09 пре 4 година
examples d9e47579fd 0.5.0 2020-01-09 пре 4 година
extras d9e47579fd 0.5.0 2020-01-09 пре 4 година
src d9e47579fd 0.5.0 2020-01-09 пре 4 година
.clang-format d9e47579fd 0.5.0 2020-01-09 пре 4 година
.gitattributes d9e47579fd 0.5.0 2020-01-09 пре 4 година
.gitignore d9e47579fd 0.5.0 2020-01-09 пре 4 година
.mbedignore d9e47579fd 0.5.0 2020-01-09 пре 4 година
.travis.yml d9e47579fd 0.5.0 2020-01-09 пре 4 година
ArduinoJson.h d9e47579fd 0.5.0 2020-01-09 пре 4 година
CHANGELOG.md d9e47579fd 0.5.0 2020-01-09 пре 4 година
CMakeLists.txt d9e47579fd 0.5.0 2020-01-09 пре 4 година
CONTRIBUTING.md d9e47579fd 0.5.0 2020-01-09 пре 4 година
LICENSE.md d9e47579fd 0.5.0 2020-01-09 пре 4 година
README.md d9e47579fd 0.5.0 2020-01-09 пре 4 година
SUPPORT.md d9e47579fd 0.5.0 2020-01-09 пре 4 година
appveyor.yml d9e47579fd 0.5.0 2020-01-09 пре 4 година
banner.svg d9e47579fd 0.5.0 2020-01-09 пре 4 година
component.mk d9e47579fd 0.5.0 2020-01-09 пре 4 година
keywords.txt d9e47579fd 0.5.0 2020-01-09 пре 4 година
library.json d9e47579fd 0.5.0 2020-01-09 пре 4 година
library.properties d9e47579fd 0.5.0 2020-01-09 пре 4 година

README.md

ArduinoJson


arduino-library-badge Build Status Build Status Fuzzing Status Coverage Status GitHub stars

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);

const char* sensor = doc["sensor"];
long time          = doc["time"];
double latitude    = doc["data"][0];
double longitude   = doc["data"][1];

See the tutorial on arduinojson.org

Serialization

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

DynamicJsonDocument doc(1024);

doc["sensor"] = "gps";
doc["time"]   = 1351824120;

JsonArray data = doc.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!