Regarding the function sendAll():
/**
* Send all data of all variables that you saved
* @reutrn true upon success, false upon error.
*/
bool Ubidots::sendAll(bool type) {
if (type) {
return sendTLATE();
} else {
return sendHTTP();
}
}
It appears that, although the transmission is successful, the return value is false (0). It’s unclear what the return value is on failure, assuming the inverse so true (1). But this is inversed to what the Doxygen header of sendAll() states.
Is this caused by a change in the sendHTTP() or sendTLATE() return values, which are called by the sendAll() function? Or is the Doxygen header just incorrect?
See GitHub issue: