ArduinoJson 6.17.3
* Made `JsonDocument`'s destructor protected (issue #1480)
* Added missing calls to `client.stop()` in `JsonHttpClient.ino` (issue #1485)
* Fixed error `expected ')' before 'char'` when `isdigit()` is a macro (issue #1487)
* Fixed error `definition of implicit copy constructor is deprecated` on Clang 10
* PlatformIO: set framework compatibility to `*` (PR #1490 by @maxgerhardt)

Changes since 6.17.2

  • Made JsonDocument's destructor protected (issue #1480)
  • Added missing calls to client.stop() in JsonHttpClient.ino (issue #1485)
  • Fixed error expected ')' before 'char' when isdigit() is a macro (issue #1487)
  • Fixed error definition of implicit copy constructor is deprecated on Clang 10
  • PlatformIO: set framework compatibility to * (PR #1490 by @maxgerhardt)

View version history

How to install

There are several ways to install ArduinoJson, from simpler to more complex:

  1. Use the Arduino Library Manager or equivalent
  2. Download ArduinoJson-v6.17.3.h put it in your project folder
  3. Download ArduinoJson-v6.17.3.zip and extract it into your libraries folder

Note: ArduinoJson-v6.17.3.h and ArduinoJson-v6.17.3.hpp are almost identical; the difference is that the .hpp keeps everything in the ArduinoJson namespace.

Try online