mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01:00
28 lines
595 B
Markdown
28 lines
595 B
Markdown
Arduino JSON library: change log
|
|
================================
|
|
|
|
v2.0
|
|
----
|
|
|
|
* Added JSON encoding.
|
|
* Renamed the library `ArduinoJsonParser` becomes `ArduinoJson`
|
|
|
|
**Breaking change**: you need to add the following line at the top of your program.
|
|
|
|
using namespace ArduinoJson::Parser;
|
|
|
|
v1.2
|
|
----
|
|
|
|
* Example: changed `char[] json` into `char json[]`. Damn it C# !
|
|
|
|
v1.1
|
|
----
|
|
|
|
* Example: changed `char* json` into `char[] json` so that the bytes are not write protected
|
|
* Fixed parsing bug when the JSON contains multi-dimensional arrays
|
|
|
|
v1.0
|
|
----
|
|
|
|
Initial release |