









| Pin Number | Name | Description | Notes |
|---|---|---|---|
| 1 | VCC | Power supply (5V DC) | Provides power to the device. |
| 2 | GND | Ground | Completes the circuit. |
The USB male 2 pin connection can be used to power an Arduino UNO via its 5V and GND pins. Below is an example of how to connect it:
While the USB male 2 pin connection is typically used for power, you can use the Arduino UNO to verify the power connection by blinking an LED:
// Simple LED Blink Example
// This code assumes an LED is connected to pin 13 on the Arduino UNO.
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
}
Device Not Powering On:
Overheating Connector:
Short Circuit:
Intermittent Power Loss:
Q: Can I use this connector for data transmission?
A: No, the USB male 2 pin connection is designed only for power delivery. For data transmission, a 4-pin USB connector is required.
Q: What happens if I reverse the VCC and GND connections?
A: Reversing the connections can damage your device. Always double-check the polarity before powering the circuit.
Q: Can I use this connector with a USB Type-C port?
A: Yes, but you will need an adapter or cable that converts USB Type-C to USB Type-A.
Q: Is this connector suitable for high-power devices?
A: No, this connector is typically rated for up to 2A. For higher power requirements, consider using a connector with a higher current rating.
This concludes the documentation for the USB male 2 pin connection.