I saw this lessonhere
I just have esp32 board and camera,I do not have display
so I have to show my camera image on my web,I have set my wifi to connect,
but it still dont work. I do not know how can I do..
please help me thanks.
code:
const char* ssid = "mywifi";
const char* password = "eee";
const int VSYNC = 32; //vertical sync
//set up pin...
//code is same
void loop()
{
Serial . println ("");
Serial.println("WiFi connected");
startCameraServer();
Serial.print("Camera Ready! Use 'http://");
Serial.print(WiFi.localIP());
Serial.println("' to connect");
while(!digitalRead(VSYNC));
while(digitalRead(VSYNC));
camera.prepareCapture();
camera.startCapture();
while(!digitalRead(VSYNC));
camera.stopCapture();
}
thanks