

The CH340E, manufactured by OEM (Part ID: USB UART 5V), is a USB to UART (Universal Asynchronous Receiver-Transmitter) bridge chip. It serves as an interface between USB ports and serial devices, enabling seamless communication. This compact and cost-effective chip is widely used in microcontroller applications, such as data transfer, programming, and debugging.








| Parameter | Value |
|---|---|
| Manufacturer | OEM |
| Part ID | USB UART 5V |
| USB Interface | USB 2.0 Full-Speed |
| UART Baud Rate | 50 bps to 2 Mbps |
| Operating Voltage | 5V |
| Operating Temperature | -40°C to +85°C |
| Package Type | SOP-8 |
| Driver Support | Windows, macOS, Linux |
The CH340E comes in an SOP-8 package with the following pinout:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (5V) |
| 2 | TXD | UART Transmit Data (output) |
| 3 | RXD | UART Receive Data (input) |
| 4 | GND | Ground |
| 5 | D+ | USB Data Positive |
| 6 | D- | USB Data Negative |
| 7 | NC | No Connection |
| 8 | RST | Reset pin (active low) |
The CH340E can be used to program or communicate with an Arduino UNO. Below is an example Arduino sketch for serial communication:
// Example: Serial communication using CH340E
// This code sends "Hello, World!" to the serial monitor every second.
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
Serial.println("Hello, World!"); // Send message to serial monitor
delay(1000); // Wait for 1 second
}
CH340E Not Recognized by Computer
No Data Transmission
Communication Errors
Device Overheating
Q1: Can the CH340E operate at 3.3V?
A1: No, the CH340E is designed for 5V operation. Use a level shifter for 3.3V devices.
Q2: Is the CH340E compatible with macOS?
A2: Yes, but you may need to install a third-party driver for macOS.
Q3: What is the maximum baud rate supported by the CH340E?
A3: The CH340E supports baud rates up to 2 Mbps.
Q4: Can I use the CH340E for USB-to-serial debugging?
A4: Yes, the CH340E is ideal for serial debugging and monitoring applications.
Q5: How do I reset the CH340E?
A5: Pull the RST pin low momentarily to reset the chip.