About web connection

Hi everyone.
I found a google web viewer as picture p1, that can easily reach google by a click.
I modified the IP as my ESP32CAM's access point ip (p2/p3), doesn't work at all and got:
net::ERR_CONNECTION_TIMED_OUT
need help please.
P1:

P2:

P3:

WEN2

What is in textbox 2 ?

Can you reach that same url using your computer browser ?

1 Like

Thank you TIMAI2.
that textbox 2 was originally for google searching, I deleted it still not work for my: laptop/iphone/Android/ test separately。
wen4

and the ESP32CAM server is ON:
WEN5

Try with the web component, do you get a response ?

1 Like

the example from ESP32CAM of CameraWebServer geaerate a server IP like the one:
192.168.100.108
with which the monitor (pc/phone) be able to stream.
I wondering how this IP coming out, where it be set?

I put the below before Setup();

// Setting Static IP.
IPAddress local_IP(192, 168, 0, 114);
IPAddress gateway(192, 168, 0, 1);
IPAddress subnet(255, 255, 255, 0);

and this in Setup();

if(!WiFi.config(local_IP, gateway, subnet)) {
  Serial.println("STA Failed to configure");
}

and got output of:

WiFi connected
Camera Ready! Use 'http://192.168.0.114' to connect

but this IP not be able to reach and doesn't stream at all, why?