Sin descripción

Benoit Blanchon e5c4778ff7 Updated publish script hace 7 años
.github 7626db624e Changed all link to point to HTTPS version hace 8 años
examples 87fa87d87b Renamed function `RawJson()` to `serialized()` hace 7 años
fuzzing a9a730fd74 Added MessagePack fuzzing hace 7 años
scripts e5c4778ff7 Updated publish script hace 7 años
src 2ec9569b36 Set version to 6.3.0-beta hace 7 años
test 6d290bd001 Fixed duplication of char* hace 7 años
third-party 5c33fd4b94 Set copyright year to 2018 hace 8 años
.clang-format 8c7edbd9c3 ArduinoJson is now a header-only library (issue #199) hace 9 años
.gitattributes e31d667bec Added support of comments in JSON input (issue #88) hace 10 años
.gitignore fc2e3a4ab3 Added `serializeMsgPack()` and `measureMsgPack()` (closes #358) hace 7 años
.mbedignore 3fd87e8e82 Added fuzzing/ to .mbedignore hace 9 años
.travis.yml c3403ed72d Fixed conflicts with `isnan()` and `isinf()` macros (fixes #752) hace 7 años
ArduinoJson.h 5c33fd4b94 Set copyright year to 2018 hace 8 años
CHANGELOG.md 2ec9569b36 Set version to 6.3.0-beta hace 7 años
CMakeLists.txt 5c33fd4b94 Set copyright year to 2018 hace 8 años
CONTRIBUTING.md 6df204cf40 Split CONTRIBUTING and SUPPORT hace 8 años
LICENSE.md 5c33fd4b94 Set copyright year to 2018 hace 8 años
README.md dc13882624 Update badges to show status of branch 6.x hace 7 años
SUPPORT.md fbfdca1de9 Added campaign information in links hace 8 años
appveyor.yml 4fe2b1100e Set version to 6.0.1-beta hace 7 años
banner.svg d6e61cbcda Added banner with the new logo hace 8 años
keywords.txt f53fc3e06f Added MessagePack in README hace 7 años
library.json 2ec9569b36 Set version to 6.3.0-beta hace 7 años
library.properties 2ec9569b36 Set version to 6.3.0-beta hace 7 años

README.md

ArduinoJson


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

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!