Chat here about code rewrites, mods, etc... with respect to the github project https://github.com/esp8266/Arduino

Moderator: igrr

User avatar
By mano1979
#56608 Hey everyone,

I am doing a GET request to another esp module. I need to do this for 10 modules in total.

So i repeat the code below to do this for all modules.

Http.begin (ipAddress);
HttpCode = http.GET ();
Http.end ();

I do this with no delays in between.

Running this code (for one module) takes about 1.5 seconds. Inmagine how long it would take with 10 modules.

Is there any way of speeding this up? I allready run the esp at 160Mhz.