I've created a custom keyboard using an ESP32 WROOM 32 with an included CP2102, programmable via USB type C.
Here is a section of my schematic:
After assembling it and connecting it to my PC, the CP2102 is detected in Device Manager: img device manager ss
Here are my settings in the Arduino IDE: img arduino setting
u use a simple example code to display serial output on the Serial Monitor using Arduino IDE for ESP32:
void setup() {
// Initialize serial monitor at 115200 bps
Serial.begin(115200);
}
void loop() {
// Write message to serial monitor
Serial.println("Hello, world!");
delay(1000); // Wait for 1 second
}
After I uploaded it to my board, the terminal displayed the following: img arduino terminal
PROBLEM**
When I open the serial monitor, there is no data displayed at any baud rate.
Can you help me identify where my mistake or error might be?