

A USB male 2 pin connection is a type of electrical connector used to establish a power and data link between devices. It is commonly used in applications where only power transmission or basic data communication is required. This connector features two pins: one for power (VCC) and the other for ground (GND). Its compact design makes it ideal for connecting peripherals to computers, chargers, or other electronic devices.








Below are the key technical details for the USB male 2 pin connection:
| Parameter | Specification |
|---|---|
| Connector Type | USB Male |
| Number of Pins | 2 |
| Voltage Rating | 5V DC (standard USB power) |
| Current Rating | Up to 2A (depending on cable quality) |
| Pin Material | Copper alloy (gold or nickel plated) |
| Housing Material | Plastic (typically ABS or PVC) |
| Operating Temperature | -20°C to 70°C |
The USB male 2 pin connector has the following pin configuration:
| Pin Number | Name | Description |
|---|---|---|
| 1 | VCC | Power supply (5V DC) |
| 2 | GND | Ground connection |
The USB male 2 pin connection can be used to power an Arduino UNO. Below is an example of how to connect it:
Here is a simple Arduino sketch to blink an LED when powered via the USB male 2 pin connection:
// 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 male 2 pin connection.
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:
Device Not Working:
Overheating:
Short Circuit:
By following this documentation, you can effectively use the USB male 2 pin connection in your projects and troubleshoot common issues with ease.