woodlist

Results 23 comments of woodlist

The usage with TinyGSM I think, should look like this (but it is impossible for given lib, for given moment): `#include #include someSSL.h #include esp32fota.h TinyGSM modem(Serial1); TinyGSMClient baseclient(modem); someSSLClient...

Are you sure that you have correctly set the data/time for SSL engine (sslClient.setVerificationTime where the "sslClient" is user defined name of client. My example was defined as "SSLClient sslClient(GSMclient,...

> Hi @woodlist, this configuration should be done when the connection is for a long period of time? I did not know that it was necessary. Thanks for your answer...

Upon newest Arduino IDE upgrade the compilation gives `C:\Users\user\Documents\Arduino\libraries\SSLClient\src\SSLClientParameters.cpp: In function 'void std::__throw_length_error(const char*)': C:\Users\user\Documents\Arduino\libraries\SSLClient\src\SSLClientParameters.cpp:5:67: warning: 'noreturn' function does return void __attribute__((weak)) __throw_length_error(char const*) {}` Compared with earlier Arduino 8.16...

Trash away your SIM800L. It is not accommodated for SSL using and targeted to China's market. Just inquire your modem for SSL feature by AT command. Instead, use SIM800C at...

> Hello @aneggi! It looks like TinyGSM is failing to read from the modem, which might be intended behavior but I'm not sure. Could you [enable diagnostics in TinyGSM](https://github.com/vshymanskyy/TinyGSM#diagnostics-sketch) and...

Copy/Paste from my terminal (interaction log with www.google.com Searching with "Arduino" keyword): Log ```console 23:51:35.647 -> Waiting for network... 23:51:35.682 -> GPRS status: connected 23:51:35.682 -> Local IP:10.104.69.90 23:51:41.667 ->...

My experience over this issue gave an answer. The selfsigned certificate is useless. Free SSL certificate was not preferable for 3 months validity period and have bought 1 year long...

Please, help. Let we say, in OTA library is written `WiFiClientSecure clientForOta; ` How do it should be reformatted, having omitted the WiFiClientSecure, if I have the beneath client declared...

> i looking inside the library, it's using setCACert() which is a WiFiClientSecure member( so no forced cast :/ ) , i see two ways to go: > 1- shadow...