ESPxxx Sensing if Thinger.io is availble

Has someone c++ code to proactively sense if Thinger.io is available?
thing.handle();
takes very long if the server is not reachable.

Thank you.

Hi,

The ESP32 V1 is dual core, you can dedicate one core to handle the critical process and other to the communication.

Other things that I’ve done is to avoid to handle the wifi with the thinger library and do it by another library that allows control easier the communication.

Hope this helps.