Nessuna descrizione

Benoit Blanchon f9cfea244a Updated copyright notice 6 anni fa
.github 59f9c9747f Add sponsor button on GitHub 6 anni fa
examples f9cfea244a Updated copyright notice 6 anni fa
extras f9cfea244a Updated copyright notice 6 anni fa
src f9cfea244a Updated copyright notice 6 anni fa
.clang-format 8c7edbd9c3 ArduinoJson is now a header-only library (issue #199) 9 anni fa
.gitattributes e31d667bec Added support of comments in JSON input (issue #88) 10 anni fa
.gitignore b47ac27ac6 Moved ancillary files to `extras/` (fixes #1011) 6 anni fa
.mbedignore 3fd87e8e82 Added fuzzing/ to .mbedignore 9 anni fa
.travis.yml b47ac27ac6 Moved ancillary files to `extras/` (fixes #1011) 6 anni fa
ArduinoJson.h f9cfea244a Updated copyright notice 6 anni fa
CHANGELOG.md 91b808381e Improved decoding of UTF-16 surrogate pairs (closes #1157) 6 anni fa
CMakeLists.txt f9cfea244a Updated copyright notice 6 anni fa
CONTRIBUTING.md 6df204cf40 Split CONTRIBUTING and SUPPORT 8 anni fa
LICENSE.md c3f71c1a99 Updated copyright year to 2019 7 anni fa
README.md 1b8107094f Set version to 6.13.0 6 anni fa
SUPPORT.md fbfdca1de9 Added campaign information in links 8 anni fa
appveyor.yml 9723682d20 AppVeyor: added Visual Studio 2019 6 anni fa
banner.svg d6e61cbcda Added banner with the new logo 8 anni fa
component.mk b261eca865 esp-idf make system 6 anni fa
keywords.txt 3d8ece8c8b Improved syntax highlighting in Arduino IDE 7 anni fa
library.json 1b8107094f Set version to 6.13.0 6 anni fa
library.properties 1b8107094f Set version to 6.13.0 6 anni fa

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!