Releases: bblanchon/ArduinoJson
Releases · bblanchon/ArduinoJson
ArduinoJson 2.0
Changes compared to 1.2:
- Added JSON encoding.
Breaking change: you need to add the following line at the top of your program.
using namespace ArduinoJson::Parser;
ArduinoJsonParser 1.2
Changes compared to 1.1:
- Example: changed
char[] json
intochar json[]
. Damn it C# !
To use this library with the Arduino IDE, you need to unzip the attached file into
<path_to_your_sketches>/libraries/
ArduinoJsonParser 1.1
Changes compared to 1.0:
- Example: changed
char* json
intochar json[]
so that the bytes are not write-protected - Fixed parsing bug when the JSON contains multi-dimensional arrays
To use this library with the Arduino IDE, you need to unzip the attached file into
<path_to_your_sketches>/libraries/