

The USB-C Terminal Female GND+5V is a compact and versatile connector designed to provide a simple interface for accessing the power lines of a USB-C connection. This component is commonly used in DIY electronics projects, prototyping, and power delivery applications. It allows users to easily tap into the +5V and GND pins of a USB-C cable without requiring complex soldering or additional circuitry.








The USB-C Terminal Female GND+5V is designed to provide access to the basic power pins of a USB-C connection. Below are the key technical details:
| Parameter | Value |
|---|---|
| Connector Type | USB-C Female Terminal Block |
| Voltage Output | +5V DC |
| Current Rating | Up to 3A |
| Pin Configuration | GND, +5V |
| Operating Temperature | -20°C to 85°C |
| Dimensions | Varies by manufacturer |
The USB-C Terminal Female GND+5V typically has two screw terminals for easy wire connections. Below is the pin configuration:
| Pin | Label | Description |
|---|---|---|
| 1 | GND | Ground connection for the circuit |
| 2 | +5V | +5V DC power output from the USB-C port |
The USB-C Terminal Female GND+5V can be used to power an Arduino UNO. Below is an example setup:
Here is a simple Arduino sketch to blink an LED while powered by the USB-C terminal:
// Simple LED Blink Example
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the Arduino is powered via the USB-C Terminal Female GND+5V.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Power Output:
Loose Connections:
Overheating:
Incorrect Polarity:
Q: Can this component be used for data transfer?
A: No, the USB-C Terminal Female GND+5V is designed only for accessing the power lines (+5V and GND). It does not support data transfer.
Q: What happens if I connect a device that requires more than 3A?
A: Exceeding the current rating may cause overheating or damage to the terminal block and USB-C power source. Always ensure your device operates within the specified limits.
Q: Can I use this with a USB-C PD (Power Delivery) charger?
A: Yes, but only if the charger defaults to +5V output or if a compatible device is used to negotiate the desired voltage.