Hello, I hope you can help me, I have uploaded the code to the ESP32-CAM, but it does not show the IP in Serial Monitor, it shows unknown characters.
Welcome to the forum
Please do not post pictures of code
Please post your sketch, using code tags when you do
Posting your code using code tags prevents parts of it being interpreted as HTML coding and makes it easier to copy for examination
In my experience the easiest way to tidy up the code and add the code tags is as follows
Start by tidying up your code by using Tools/Auto Format in the IDE to make it easier to read. Then use Edit/Copy for Forum and paste what was copied in a new reply. Code tags will have been added to the code to make it easy to read in the forum thus making it easier to provide help.
You need to match the Serial baud rate in your code and in your IDE.
The code would probably be:
void setup() {
Serial.begin(115200);
Serial.setDebugOutput(true);
Serial.println();
...
}
(Using code tags, you can display your program like the above.)
The IDE baud rate should be 115200:
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.

