Where in the ESP23 cam code is the output IP port set?
I would like to run it on ports other than 80 and 18
Where can I modify code to output on other ports (ie 8001, 8010)
Any of the projects in the ESP32 CAM book
or the example in arduino ide
you should put code ID in the arduino code
/*********
Rui Santos
Complete instructions at https://RandomNerdTutorials.com/esp32-cam-projects-ebook/
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files.
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*********/
usually assigns server to port 80 and stream to port 80
void startCameraServer(){
httpd_config_t config = HTTPD_DEFAULT_CONFIG();
config.server_port = 80;
…..
config.server_port += 1;
……
Serial.print(“Camera Stream Ready! Go to: http://”);
Serial.println(WiFi.localIP());