The USB-C to 2 Wires Adapter is a versatile component designed to split a USB-C connection into two separate wires. This adapter is commonly used for power delivery or data transfer applications, making it an essential tool for various electronic projects. Whether you are powering a device or transferring data, this adapter provides a simple and effective solution.
Parameter | Specification |
---|---|
Connector Type | USB-C |
Output Wires | 2 (typically red and black) |
Voltage Rating | Up to 20V |
Current Rating | Up to 3A |
Data Transfer | USB 2.0 or USB 3.0 compatible |
Wire Gauge | 22 AWG |
Length | Varies (typically 15-30 cm) |
Pin Number | USB-C Pin | Wire Color | Description |
---|---|---|---|
1 | VBUS | Red | Power (5V to 20V) |
2 | GND | Black | Ground |
Identify the Wires:
Connecting to a Power Source:
Connecting to a Device:
No Power Delivery:
Overheating:
Data Transfer Issues:
If you are using the USB-C to 2 Wires Adapter to power an Arduino UNO, you can use the following code to test the setup:
// Simple Blink Example
// This code will blink the onboard LED on the Arduino UNO
void setup() {
pinMode(LED_BUILTIN, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(LED_BUILTIN, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Ensure the USB-C to 2 Wires Adapter is properly connected to the Arduino UNO's power input (5V and GND) before uploading the code.
This documentation provides a comprehensive guide to using the USB-C to 2 Wires Adapter, ensuring both beginners and experienced users can effectively utilize this component in their projects.