I will switch an automation small project from BTooth setup to Cloud setup.
Our Arduino needs to read and write to our custom APIs in a web hosting service.
I am new to third party libraries, and browsing Github I see tons of them, some well documented, and some not so well documented.
In this last case, I feel documentation is only by reading file.h and the implementation in file.cpp
In this context, may I be pointed to a well documented and maintained library ?
HttpClient is a candidate. Has 7 years with no changes.
Mr Giuseppe Masino offers a lib maintained 4 years ago.
For none of them I find this class of document (as an example)
See what I mean:
The documentation I refer has basically, for each function member:
QUOTE
Description
Reports if the previous voice command has executed successfully
Syntax
voice.ready()
Parameters
none
Returns
int In asynchronous mode, ready() returns 0 if the last command is still executing, 1 if there is success, and >1 in case of an error. In synchronous mode, it returns 1 if it executed successfully, 0 if not.
UNQUOTE