Dan

Results 20 comments of Dan

I've updated some of the folders so I can use it with a test project. Thought it might be interesting to add back into the repo. No worries if not.

Great! Glad to be of help

@WebDust21 @TONYCHOU81905 @Matt-Stedman-HardStuff - `digitaldragon/[email protected]` works for me, and it also fixed a buffer issue that was present in previous versions. @RobertByrnes - I get the same issue as above...

@WebDust21 - I use this library with AWS IoT and TinyGSM as it was the least painful one. I haven't tested the speed though as I'm only using this for...

@WebDust21 Fair enough. This is _roughly_ how I wrapped my call. ```cpp #define TINY_GSM_RX_BUFFER 1024 TinyGsmClient networkClient(modem); SSLClient sslClient(&networkClient); PubSubClient mqttClient(AWS_IOT_ENDPOINT, AWS_IOT_PORT, provisionCallback, &sslClient, Serial); // Wrapper SSLClient sslClient(&networkClient); sslClient->setCACert(AWS_CA_CERTIFICATE);...

Interestingly I am getting this in 1.1.16 but the connection still works : ``` [ 29129][E][ssl_client.cpp:431] start_ssl_client(): mbedtls_ssl_get_record_expansion returned -0xffffffe3 [ 29129][I][SSLClient.cpp:241] connect(): SSL connection established ```

@Matt-Stedman-HardStuff - I'll keep an eye on that PR

Thanks for updating. The project I'm working on is somewhat on hold. I will do some tests and see what voltage they are cutting out at. I think it might...

@Blackhoody12 I'm using the A7670SA on a Lilygo board and this is working for me, so maybe it will work for you? ```cpp /* FILE: AllFunctions.ino https://github.com/Xinyuan-LilyGO/T-A7670X/blob/main/examples/TinyGSM_Net_GNSS/TinyGSM_Net_GNSS.ino AUTHOR: Koby Hale...

There's a bunch of manuals that you can look at, but start here: https://cdn.geekfactory.mx/sim7000g/SIM7000%20Series_TCPIP_Application%20Note_V1.02.pdf And for the details on each AT command: https://cdn.geekfactory.mx/sim7000g/SIM7000%20Series_AT%20Command%20Manual_V1.06.pdf If you are using TinyGsm, then it...