

The Cermant Celent_CL533 USB Type-C Breakout Board is a compact and versatile tool designed to simplify prototyping and testing of USB Type-C connections. This breakout board provides easy access to the pins of a USB Type-C connector, enabling developers and engineers to experiment with USB Type-C functionalities such as power delivery, data transfer, and alternate modes.








The Celent_CL533 breakout board is designed to meet the needs of developers working with USB Type-C. Below are the key technical details:
| Parameter | Value |
|---|---|
| Connector Type | USB Type-C Female |
| Voltage Rating | 3.3V to 20V (depending on usage) |
| Current Rating | Up to 5A |
| Supported Protocols | USB 2.0, USB 3.1, USB Power Delivery |
| PCB Dimensions | 25mm x 20mm x 1.6mm |
| Operating Temperature | -40°C to 85°C |
The breakout board exposes the following USB Type-C pins for easy access:
| Pin Name | Pin Number | Description |
|---|---|---|
| GND | A1, A12, B1, B12 | Ground pins for power and signal return. |
| VBUS | A4, B4 | Power supply input/output (3.3V to 20V, depending on USB PD configuration). |
| CC1 | A5 | Configuration Channel 1 for USB Type-C communication and power negotiation. |
| CC2 | B5 | Configuration Channel 2 for USB Type-C communication and power negotiation. |
| D+ | A6 | USB 2.0 Data Positive line. |
| D- | A7 | USB 2.0 Data Negative line. |
| TX1+ | A2 | USB 3.1 SuperSpeed Transmit Positive (Lane 1). |
| TX1- | A3 | USB 3.1 SuperSpeed Transmit Negative (Lane 1). |
| RX1+ | B2 | USB 3.1 SuperSpeed Receive Positive (Lane 1). |
| RX1- | B3 | USB 3.1 SuperSpeed Receive Negative (Lane 1). |
| SBU1 | A8 | Sideband Use 1 for alternate modes (e.g., DisplayPort). |
| SBU2 | B8 | Sideband Use 2 for alternate modes (e.g., DisplayPort). |
The Celent_CL533 breakout board can be used with an Arduino UNO for basic USB communication. Below is an example of how to read data from the USB D+ and D- lines:
// Simple Arduino sketch to read USB D+ and D- signals
// Note: This is for demonstration purposes only. USB signals are high-speed
// and require specialized hardware for proper decoding.
const int dpPin = 2; // Pin connected to D+ line
const int dmPin = 3; // Pin connected to D- line
void setup() {
pinMode(dpPin, INPUT); // Set D+ pin as input
pinMode(dmPin, INPUT); // Set D- pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int dpState = digitalRead(dpPin); // Read D+ state
int dmState = digitalRead(dmPin); // Read D- state
// Print the states to the Serial Monitor
Serial.print("D+: ");
Serial.print(dpState);
Serial.print(" | D-: ");
Serial.println(dmState);
delay(100); // Delay for readability
}
No Power on VBUS Pin:
Data Communication Fails:
Cable Orientation Not Detected:
Overheating:
By following this documentation, users can effectively utilize the Cermant Celent_CL533 USB Type-C Breakout Board for a wide range of prototyping and testing applications.