Sara Damiano
Sara Damiano
I've updated the MaxBotix part of the library (again). I'm finally mostly satisfied with it now. Just FYI, the red power LED only shows if the power is on to...
@s-hicks2, what do you think? I like @sgfulton 's way of interfacing with the sensor, but we'd need to re-solder the grove connections.
Sorry for the late response. Hm. Well using RS485 or not shouldn't make any difference for this library. In every Arduino type set-up I've seen, the RS485 to TTL conversion...
I'm not sure. Have you tried it? Does it work? If not, what errors do you get?
Did you try breaking your json array into smaller chunks? I'm not sure if you can send more than 1500 bytes at once with CIPSEND.
Instead of using a single ```http.post(resource, contentType, really_big_json_data);``` you should use the start/end commands to break it up: ```cpp http.startRequest(resource, "POST", ""application/json", total_length); http.write(data_chunk_1, length_chunk_1); http.write(data_chunk_2, length_chunk_2); // etc ......
I don't think this is the right place for that question. If you're looking for errors related to AT commands used by this library, the easiest way to view the...
I don't know if you're still looking, but the most I would be able to do is review a pull request.
Are you still having issues?
Have you been able to resolve this?