Skip to content

bblanchon/ArduinoJson

Folders and files

NameName
Last commit message
Last commit date
Jun 18, 2024
Dec 29, 2024
Jun 18, 2024
Feb 24, 2025
Mar 17, 2025
Mar 17, 2025
Feb 16, 2023
Jul 17, 2023
Jan 14, 2023
Jul 17, 2023
Apr 27, 2021
Feb 24, 2025
Mar 17, 2025
Feb 27, 2025
Feb 3, 2021
Feb 24, 2025
Jul 2, 2024
Jan 15, 2018
Feb 27, 2025
Oct 7, 2019
Feb 27, 2025
Aug 9, 2023
Feb 27, 2025
Feb 27, 2025

Repository files navigation

ArduinoJson


GitHub Workflow Status Continuous Integration Fuzzing Status Coveralls branch
GitHub stars GitHub Sponsors

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

Features

Quickstart

Deserialization

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

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

JsonDocument doc;
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:

JsonDocument doc;

doc["sensor"] = "gps";
doc["time"]   = 1351824120;
doc["data"][0] = 48.756080;
doc["data"][1] = 2.302038;

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

See the tutorial on arduinojson.org

Sponsors

ArduinoJson is thankful to its sponsors. Please give them a visit; they deserve it!

Programming Electronics Academy

1technophile LArkema

If you run a commercial project that embeds ArduinoJson, think about sponsoring the library's development: it ensures the code that your products rely on stays actively maintained. It can also give your project some exposure to the makers' community.

If you are an individual user and want to support the development (or give a sign of appreciation), consider purchasing the book Mastering ArduinoJson โค, or simply cast a star โญ.