2022-09-20 16:59:06 +02:00
< p align = "center" >
2023-02-08 16:29:29 +01:00
< a href = "https://arduinojson.org/" > < img alt = "ArduinoJson" src = "https://arduinojson.org/images/logo.svg" width = "200" / > < / a >
2022-09-20 16:59:06 +02:00
< / p >
2017-10-16 10:21:44 +02:00
2017-12-15 17:52:13 +01:00
---
2014-07-04 19:11:04 +02:00
2023-01-12 09:52:03 +01:00
[](https://github.com/bblanchon/ArduinoJson/actions?query=workflow%3A%22Continuous+Integration%22+branch%3A6.x)
2021-02-03 21:33:13 +01:00
[](https://ci.appveyor.com/project/bblanchon/arduinojson/branch/6.x)
2019-09-19 09:28:35 +02:00
[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened& can=1& q=proj:arduinojson)
2022-01-05 12:08:18 +01:00
[](https://coveralls.io/github/bblanchon/ArduinoJson?branch=6.x)
2023-04-12 14:35:25 +02:00
[](https://www.ardu-badge.com/ArduinoJson/6.21.2)
[](https://registry.platformio.org/packages/libraries/bblanchon/ArduinoJson?version=6.21.2)
[](https://components.espressif.com/components/bblanchon/arduinojson)
2023-01-12 09:52:03 +01:00
[](https://github.com/bblanchon/ArduinoJson/stargazers)
[](https://github.com/sponsors/bblanchon)
2014-07-04 19:11:04 +02:00
2017-12-15 17:52:13 +01:00
ArduinoJson is a C++ JSON library for Arduino and IoT (Internet Of Things).
2014-07-04 19:11:04 +02:00
2017-12-15 17:52:13 +01:00
## Features
2014-07-04 19:11:04 +02:00
2022-04-07 18:49:39 +02:00
* [JSON deserialization ](https://arduinojson.org/v6/api/json/deserializejson/ )
* [Optionally decodes UTF-16 escape sequences to UTF-8 ](https://arduinojson.org/v6/api/config/decode_unicode/ )
* [Optionally stores links to the input buffer (zero-copy) ](https://arduinojson.org/v6/api/json/deserializejson/ )
* [Optionally supports comments in the input ](https://arduinojson.org/v6/api/config/enable_comments/ )
* [Optionally filters the input to keep only desired values ](https://arduinojson.org/v6/api/json/deserializejson/#filtering )
2020-01-15 18:25:59 +01:00
* Supports single quotes as a string delimiter
2021-02-03 21:33:13 +01:00
* Compatible with [NDJSON ](http://ndjson.org/ ) and [JSON Lines ](https://jsonlines.org/ )
2022-04-07 18:49:39 +02:00
* [JSON serialization ](https://arduinojson.org/v6/api/json/serializejson/ )
* [Can write to a buffer or a stream ](https://arduinojson.org/v6/api/json/serializejson/ )
* [Optionally indents the document (prettified JSON) ](https://arduinojson.org/v6/api/json/serializejsonpretty/ )
* [MessagePack serialization ](https://arduinojson.org/v6/api/msgpack/serializemsgpack/ )
* [MessagePack deserialization ](https://arduinojson.org/v6/api/msgpack/deserializemsgpack/ )
2020-01-15 18:25:59 +01:00
* Efficient
2022-04-07 18:49:39 +02:00
* [Twice smaller than the "official" Arduino_JSON library ](https://arduinojson.org/2019/11/19/arduinojson-vs-arduino_json/ )
* [Almost 10% faster than the "official" Arduino_JSON library ](https://arduinojson.org/2019/11/19/arduinojson-vs-arduino_json/ )
* [Consumes roughly 10% less RAM than the "official" Arduino_JSON library ](https://arduinojson.org/2019/11/19/arduinojson-vs-arduino_json/ )
* [Fixed memory allocation, no heap fragmentation ](https://arduinojson.org/v6/api/jsondocument/ )
* [Optionally works without heap memory (zero malloc) ](https://arduinojson.org/v6/api/staticjsondocument/ )
* [Deduplicates strings ](https://arduinojson.org/news/2020/08/01/version-6-16-0/ )
2020-01-15 18:25:59 +01:00
* Versatile
2022-04-07 18:49:39 +02:00
* Supports [custom allocators (to use external RAM chip, for example) ](https://arduinojson.org/v6/how-to/use-external-ram-on-esp32/ )
* Supports [`String` ](https://arduinojson.org/v6/api/config/enable_arduino_string/ ), [`std::string` ](https://arduinojson.org/v6/api/config/enable_std_string/ ), and [`std::string_view` ](https://arduinojson.org/v6/api/config/enable_string_view/ )
* Supports [`Stream` ](https://arduinojson.org/v6/api/config/enable_arduino_stream/ ) and [`std::istream`/`std::ostream` ](https://arduinojson.org/v6/api/config/enable_std_stream/ )
* Supports [Flash strings ](https://arduinojson.org/v6/api/config/enable_progmem/ )
* Supports [custom readers ](https://arduinojson.org/v6/api/json/deserializejson/#custom-reader ) and [custom writers ](https://arduinojson.org/v6/api/json/serializejson/#custom-writer )
* Supports [custom converters ](https://arduinojson.org/news/2021/05/04/version-6-18-0/ )
2020-01-15 18:25:59 +01:00
* Portable
* Usable on any C++ project (not limited to Arduino)
2023-02-09 18:57:34 +01:00
* Compatible with C++11, C++14 and C++17
* Support for C++98/C++03 available on [ArduinoJson 6.20.x ](https://github.com/bblanchon/ArduinoJson/tree/6.20.x )
2020-01-15 18:25:59 +01:00
* Zero warnings with `-Wall -Wextra -pedantic` and `/W4`
* [Header-only library ](https://en.wikipedia.org/wiki/Header-only )
* Works with virtually any board
* Arduino boards: [Uno ](https://amzn.to/38aL2ik ), [Due ](https://amzn.to/36YkWi2 ), [Micro ](https://amzn.to/35WkdwG ), [Nano ](https://amzn.to/2QTvwRX ), [Mega ](https://amzn.to/36XWhuf ), [Yun ](https://amzn.to/30odURc ), [Leonardo ](https://amzn.to/36XWjlR )...
* Espressif chips: [ESP8266 ](https://amzn.to/36YluV8 ), [ESP32 ](https://amzn.to/2G4pRCB )
* Lolin (WeMos) boards: [D1 mini ](https://amzn.to/2QUpz7q ), [D1 Mini Pro ](https://amzn.to/36UsGSs )...
2022-01-05 12:08:18 +01:00
* Teensy boards: [4.0 ](https://amzn.to/30ljXGq ), [3.2 ](https://amzn.to/2FT0EuC ), [2.0 ](https://amzn.to/2QXUMXj )
2020-01-15 18:25:59 +01:00
* Particle boards: [Argon ](https://amzn.to/2FQHa9X ), [Boron ](https://amzn.to/36WgLUd ), [Electron ](https://amzn.to/30vEc4k ), [Photon ](https://amzn.to/387F9Cd )...
* Texas Instruments boards: [MSP430 ](https://amzn.to/30nJWgg )...
2021-10-11 15:16:18 +02:00
* Soft cores: [Nios II ](https://en.wikipedia.org/wiki/Nios_II )...
2020-01-15 18:25:59 +01:00
* Tested on all major development environments
* [Arduino IDE ](https://www.arduino.cc/en/Main/Software )
* [Atmel Studio ](http://www.atmel.com/microsite/atmel-studio/ )
* [Atollic TrueSTUDIO ](https://atollic.com/truestudio/ )
* [Energia ](http://energia.nu/ )
* [IAR Embedded Workbench ](https://www.iar.com/iar-embedded-workbench/ )
* [Keil uVision ](http://www.keil.com/ )
* [MPLAB X IDE ](http://www.microchip.com/mplab/mplab-x-ide )
2021-02-03 21:33:13 +01:00
* [Particle ](https://www.particle.io/ )
2020-01-15 18:25:59 +01:00
* [PlatformIO ](http://platformio.org/ )
* [Sloeber plugin for Eclipse ](https://eclipse.baeyens.it/ )
* [Visual Micro ](http://www.visualmicro.com/ )
* [Visual Studio ](https://www.visualstudio.com/ )
2021-02-03 21:33:13 +01:00
* [Even works with online compilers like wandbox.org ](https://wandbox.org/permlink/RlZSKy17DjJ6HcdN )
2022-04-07 18:49:39 +02:00
* [CMake friendly ](https://arduinojson.org/v6/how-to/use-arduinojson-with-cmake/ )
2020-01-15 18:25:59 +01:00
* Well designed
2022-04-07 18:49:39 +02:00
* [Elegant API ](http://arduinojson.org/v6/example/ )
2020-01-15 18:25:59 +01:00
* [Thread-safe ](https://en.wikipedia.org/wiki/Thread_safety )
* Self-contained (no external dependency)
* `const` friendly
2022-04-07 18:49:39 +02:00
* [`for` friendly ](https://arduinojson.org/v6/api/jsonobject/begin_end/ )
2020-01-15 18:25:59 +01:00
* [TMP friendly ](https://en.wikipedia.org/wiki/Template_metaprogramming )
2022-04-07 18:49:39 +02:00
* Handles [integer overflows ](https://arduinojson.org/v6/api/jsonvariant/as/#integer-overflows )
2020-01-15 18:25:59 +01:00
* Well tested
* [Unit test coverage close to 100% ](https://coveralls.io/github/bblanchon/ArduinoJson?branch=6.x )
* Continuously tested on
2023-02-09 19:04:23 +01:00
* [Visual Studio 2017, 2019, 2022 ](https://ci.appveyor.com/project/bblanchon/arduinojson/branch/6.x )
2023-03-27 08:48:44 +02:00
* [GCC 5, 6, 7, 8, 9, 10, 11 ](https://github.com/bblanchon/ArduinoJson/actions?query=workflow%3A%22Continuous+Integration%22 )
2023-02-09 18:56:34 +01:00
* [Clang 3.8, 3.9, 4.0, 5.0, 6.0, 7, 8, 9, 10 ](https://github.com/bblanchon/ArduinoJson/actions?query=workflow%3A%22Continuous+Integration%22 )
2020-01-15 18:25:59 +01:00
* [Continuously fuzzed with Google OSS Fuzz ](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:arduinojson )
2021-06-04 11:39:19 +02:00
* Passes all default checks of [clang-tidy ](https://releases.llvm.org/10.0.0/tools/clang/tools/extra/docs/clang-tidy/ )
2020-01-15 18:25:59 +01:00
* Well documented
2022-04-07 18:49:39 +02:00
* [Tutorials ](https://arduinojson.org/v6/doc/deserialization/ )
* [Examples ](https://arduinojson.org/v6/example/ )
* [How-tos ](https://arduinojson.org/v6/example/ )
* [FAQ ](https://arduinojson.org/v6/faq/ )
* [Troubleshooter ](https://arduinojson.org/v6/troubleshooter/ )
* [Book ](https://arduinojson.org/book/ )
2021-03-29 09:20:49 +02:00
* [Changelog ](CHANGELOG.md )
2020-01-15 18:25:59 +01:00
* Vibrant user community
2021-06-18 11:32:24 +02:00
* Most popular of all Arduino libraries on [GitHub ](https://github.com/search?o=desc&q=arduino+library&s=stars&type=Repositories )
2020-01-15 18:25:59 +01:00
* [Used in hundreds of projects ](https://www.hackster.io/search?i=projects&q=arduinojson )
* [Responsive support ](https://github.com/bblanchon/ArduinoJson/issues?q=is%3Aissue+is%3Aclosed )
2015-09-29 21:49:19 +02:00
2017-12-15 17:52:13 +01:00
## Quickstart
2014-07-04 19:11:04 +02:00
2017-12-15 17:52:13 +01:00
### Deserialization
Here is a program that parses a JSON document with ArduinoJson.
2015-08-24 18:10:10 +02:00
2015-10-30 22:29:47 +01:00
```c++
char json[] = "{\"sensor\":\"gps\",\"time\":1351824120,\"data\":[48.756080,2.302038]}";
2014-07-04 19:11:04 +02:00
2019-01-14 10:32:19 +01:00
DynamicJsonDocument doc(1024);
2018-04-17 21:27:45 +02:00
deserializeJson(doc, json);
2014-07-05 12:53:34 +02:00
2019-03-24 18:21:58 +01:00
const char* sensor = doc["sensor"];
long time = doc["time"];
double latitude = doc["data"][0];
double longitude = doc["data"][1];
2015-10-30 22:29:47 +01:00
```
2014-07-05 12:53:34 +02:00
2022-12-05 08:15:39 -08:00
See the [tutorial on arduinojson.org ](https://arduinojson.org/v6/doc/deserialization/ )
2017-01-03 22:03:50 +01:00
2017-12-15 17:52:13 +01:00
### Serialization
2017-05-27 15:31:47 +02:00
2017-12-15 17:52:13 +01:00
Here is a program that generates a JSON document with ArduinoJson:
2015-08-24 18:10:10 +02:00
2015-10-30 22:29:47 +01:00
```c++
2019-01-14 10:32:19 +01:00
DynamicJsonDocument doc(1024);
2018-04-17 21:27:45 +02:00
2019-03-24 18:21:58 +01:00
doc["sensor"] = "gps";
doc["time"] = 1351824120;
2020-04-08 11:16:11 +02:00
doc["data"][0] = 48.756080;
doc["data"][1] = 2.302038;
2014-07-05 12:53:34 +02:00
2018-04-17 21:27:45 +02:00
serializeJson(doc, Serial);
2015-10-30 22:29:47 +01:00
// This prints:
// {"sensor":"gps","time":1351824120,"data":[48.756080,2.302038]}
2015-10-30 23:03:16 +01:00
```
2014-07-05 12:53:34 +02:00
2022-12-05 08:15:39 -08:00
See the [tutorial on arduinojson.org ](https://arduinojson.org/v6/doc/serialization/ )
2015-11-09 22:55:29 +01:00
2021-11-11 09:38:25 +01:00
## Sponsors
ArduinoJson is thankful to its sponsors. Please give them a visit; they deserve it!
< p >
< a href = "https://www.programmingelectronics.com/" rel = "sponsored" >
< img src = "https://arduinojson.org/images/2021/10/programmingeleactronicsacademy.png" alt = "Programming Electronics Academy" width = "200" >
< / a >
< / p >
< p >
< a href = "https://github.com/1technophile" rel = "sponsored" >
< img alt = "1technophile" src = "https://avatars.githubusercontent.com/u/12672732?s=40&v=4" >
< / a >
< / p >
If you run a commercial project that embeds ArduinoJson, think about [sponsoring the library's development ](https://github.com/sponsors/bblanchon ): 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 ](https://arduinojson.org/book/ ) ❤, or simply [cast a star ](https://github.com/bblanchon/ArduinoJson/stargazers ) ⭐.