Where is documentation for the C++ J JSON object functions?

Where can I see the details on all of the J JSON object functions. Ex.

JAddBoolToObject
JAddNumberToObject
JAddStringToObject
JAddObjectToObject
JAddArrayToObject
JAddItemToArray
etc.

Hi @markwkiehl,

You can find details on those functions in this section of our Arduino library’s documentation: Arduino Library - Blues Wireless Developers.

TJ

That page doesn’t provide details. I want to know the data type returned from the function, and the data type for arguments. I ran into trouble with the difference between a String and a string for example.

Ah, gotcha. At the moment we don’t have API documentation available for those methods. It’s on our backlog, but in the meantime the code is open source, and most of the functions are defined here: note-c/n_cjson_helpers.c at master · blues/note-c · GitHub.

TJ

1 Like

That work perfectly. Thank you.