Keine Beschreibung

Benoit Blanchon 46bd98fd10 `JsonObject::createNestedArray()` returns `JsonArray::invalid()` if key is null vor 2 Jahren
.github 7626db624e Changed all link to point to HTTPS version vor 8 Jahren
examples 0d01e84336 Updated copyright year to 2019 vor 7 Jahren
fuzzing 7b229e4c38 Added fuzzing to travis vor 7 Jahren
scripts a0011ba7f8 Travis: build in Release mode vor 6 Jahren
src 46bd98fd10 `JsonObject::createNestedArray()` returns `JsonArray::invalid()` if key is null vor 2 Jahren
test 46bd98fd10 `JsonObject::createNestedArray()` returns `JsonArray::invalid()` if key is null vor 2 Jahren
third-party 0d01e84336 Updated copyright year to 2019 vor 7 Jahren
.clang-format 8c7edbd9c3 ArduinoJson is now a header-only library (issue #199) vor 9 Jahren
.gitattributes e31d667bec Added support of comments in JSON input (issue #88) vor 10 Jahren
.gitignore 6b2f6a4f87 Added fuzzer vor 9 Jahren
.mbedignore 3fd87e8e82 Added fuzzing/ to .mbedignore vor 9 Jahren
.travis.yml ce607196d1 Travis: update osx images vor 7 Jahren
ArduinoJson.h 0d01e84336 Updated copyright year to 2019 vor 7 Jahren
CHANGELOG.md 46bd98fd10 `JsonObject::createNestedArray()` returns `JsonArray::invalid()` if key is null vor 2 Jahren
CMakeLists.txt 0d01e84336 Updated copyright year to 2019 vor 7 Jahren
CONTRIBUTING.md 6df204cf40 Split CONTRIBUTING and SUPPORT vor 8 Jahren
LICENSE.md 0d01e84336 Updated copyright year to 2019 vor 7 Jahren
README.md ad4b13c8f0 Set version to 5.13.5 vor 6 Jahren
SUPPORT.md fbfdca1de9 Added campaign information in links vor 8 Jahren
appveyor.yml ad4b13c8f0 Set version to 5.13.5 vor 6 Jahren
banner.svg d6e61cbcda Added banner with the new logo vor 8 Jahren
keywords.txt 4a7232ac99 Added DynamicJsonBuffer to the keywords vor 9 Jahren
library.json ad4b13c8f0 Set version to 5.13.5 vor 6 Jahren
library.properties ad4b13c8f0 Set version to 5.13.5 vor 6 Jahren

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)
  • 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]}";

StaticJsonBuffer<200> jsonBuffer;

JsonObject& root = jsonBuffer.parseObject(json);

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:

StaticJsonBuffer<200> jsonBuffer;

JsonObject& root = jsonBuffer.createObject();
root["sensor"] = "gps";
root["time"] = 1351824120;

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

root.printTo(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!