Control three esp32s3 in the same time
I doing a project that uses three esp32 to control the LEDs by using an application that is made by Android Studio.
The esp32 can be controlled if user gets in the link, for example: http://192.168.68.185/on http://192.168.68.186/off http://192.168.68.187/on
they have the same Wifi and a fixed IP.
The problem is my application is running the program one by one or having slow responses.
some things like this: sendHttpRequest(url1) sendHttpRequest(url2)
Is there any way can make it all process at the same time?
I trying to putting delay() in esp32 but it also not process at the same time. because the time that make it slow is not fixed.
Source: View source