WT32-ETH01 ESP32 doesnt serially communicate

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!");
  }

TTL means 5V logic but the ESP32 isn't 5V tolerant. You might have fried the ESP pins.

WT32-ETH01 is 5V

No. You may power it with 5V but the signals are 3.3V, I cannot see a level converter that would change that for the ESP32.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.