Hey!
Im trying to get my WT32-ETH01 to serially communicate.
Its quite strange as I can flash it with my current setup, im using a CP2102 USB to TTL.
Here is how I've got it plugged in:
WT32-ETH01=======CP2102
5V===============5V
GND=============GND
TX0==============RXD
RX0==============TXD
TX0 and RX0 according to the manual should be Serial. Here is my code:
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("ESP32 serial started!");
}
void loop()
{
Serial.println("ESP32 serial started!");
}