Hi all, I’m writing an App for streaming and capture images from an ESP32-Cam via WiFi, using WebViewer and Web components. The Arduino code starts with the following, to establish a WiFi network as soft Access Point.
The question is: how can I check if and when the Android device can communicate with the ESP32. I mean, how to check if the connection is ready?
Thanks
// Set up a soft access point to establish a Wi-Fi network with SSID and password
WiFi.softAP(ssid, password);
IPAddress IP = WiFi.softAPIP();
startCameraServer();
Serial.println("Camera Stream Ready");
Serial.println("Connect your device to 'ESP32-Cam' WiFi Access Point");
Serial.print("Current password: ");
Serial.println(password);
Serial.print("IP address: ");
Serial.print("http://");
Serial.println(IP);