Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 523 Bytes

README.rst

File metadata and controls

20 lines (11 loc) · 523 Bytes

ArduinoJson Version 5

Provided to support existing applications. New projects should use :library:`ArduinoJson6`.

Attention!

Issue with JSON keys (applies to version 5 only)

According to the ArduinoJson docs it should take an internal copy of char* strings, but it doesn’t! This can occur using the :c:func:`_F` macro:

root[_F("offset")] = something;

This won't work. Instead, use the :c:func:`F` macro:

root[F("offset")] = something;