Re: Problems uploading code to esp32+cam
Posted: Sat Jun 08, 2019 4:39 pm
Hi,
I'm glad that you solved your issue with not being able to upload the firmware.
I think the reason behind the "garbage" characters in the serial port monitor is that you didn't set your baud rate to the correct value. Go through the code, and typically in the setup() function Serial.begin(some_number) is called. This "some number" is the baud rate, it's typically set to 115200. When you open your serial monitor, at its bottom-right corner there is a drop-down menu. Select the option "x baud", where x is that number in the code. I think it would solve the problem.
I'm glad that you solved your issue with not being able to upload the firmware.
I think the reason behind the "garbage" characters in the serial port monitor is that you didn't set your baud rate to the correct value. Go through the code, and typically in the setup() function Serial.begin(some_number) is called. This "some number" is the baud rate, it's typically set to 115200. When you open your serial monitor, at its bottom-right corner there is a drop-down menu. Select the option "x baud", where x is that number in the code. I think it would solve the problem.