Timothy Woo

Results 165 comments of Timothy Woo

Make sure your SIM7000 module is powered on with a LiPo battery and connected via USB (make sure the USB cable you're using has data wires, not just power).

Make sure all the USB drivers are installed from the device manager. I just tried with a random board and it detects it just fine.

With the folder selected (like you have it in the screenshot above), right click on the right side and click "New" then "File..."

Try saving it as "atesens.crt" to begin with.

Try [these AT commands](https://github.com/botletics/SIM7000-LTE-Shield/issues/165#issue-568893959) which worked for a user.

Hey guys, figured out how to connect with SSL without verifying certs! Please do the following: - Set "SSL_FONA" to 1 in the .h file - Download the latest .cpp...

Hey guys, figured out how to connect with SSL without verifying certs! Please do the following: - Set "SSL_FONA" to 1 in the .h file - Download the latest .cpp...

Added this to the fona.HTTP_connect() function: ``` if (SSL_FONA) { sendCheckReply(F("AT+CSSLCFG=\"sslversion\",1,3"), ok_reply); sendCheckReply(F("AT+SHSSL=1,\"\""), ok_reply, 10000); } ```

Hi there, I just added some revisions from a pull request adding SSL to the library. Please check out the [fona.addRootCA()](https://github.com/botletics/SIM7000-LTE-Shield/wiki/Library-Functions#fonaaddrootca) function for TCP + SSL.

Hey guys, figured out how to connect with SSL without verifying certs on the SIM7000! Please do the following: - Set "SSL_FONA" to 1 in the .h file (remember to...