

The USB Type A Female connector (Part ID: nk2) is a standard interface widely used for connecting peripheral devices to a host, such as computers, laptops, and chargers. It supports both data transfer and power supply, making it a versatile component in modern electronics. This connector is commonly found in USB hubs, power adapters, and embedded systems requiring USB connectivity.








The USB Type A Female connector has four or more pins, depending on the USB version. Below is the pinout for USB 2.0:
| Pin Number | Name | Description |
|---|---|---|
| 1 | VBUS | +5V Power Supply |
| 2 | D- | Data Line (negative) |
| 3 | D+ | Data Line (positive) |
| 4 | GND | Ground |
For USB 3.0, additional pins are included for SuperSpeed data transfer:
| Pin Number | Name | Description |
|---|---|---|
| 5 | StdA_SSRX- | SuperSpeed Receiver (negative) |
| 6 | StdA_SSRX+ | SuperSpeed Receiver (positive) |
| 7 | GND_DRAIN | Ground for SuperSpeed signal pairs |
| 8 | StdA_SSTX- | SuperSpeed Transmitter (negative) |
| 9 | StdA_SSTX+ | SuperSpeed Transmitter (positive) |
The USB Type A Female connector can be used to interface USB devices with an Arduino UNO. Below is an example of wiring and code for reading data from a USB keyboard using a USB Host Shield.
#include <USBHost.h> // Include USB Host library
USBHost usb; // Create USBHost object
KeyboardController keyboard(usb); // Create KeyboardController object
void setup() {
Serial.begin(9600); // Initialize serial communication
while (!Serial) {
; // Wait for serial port to connect
}
Serial.println("USB Host Shield Initialized");
usb.begin(); // Start USB host
}
void loop() {
usb.Task(); // Process USB tasks
if (keyboard.available()) {
char key = keyboard.getKey(); // Get key pressed
Serial.print("Key Pressed: ");
Serial.println(key);
}
}
Note: This example requires a USB Host Shield and the USB Host library.
No Power to Connected Device:
Data Transfer Fails:
Device Not Recognized:
Can this connector handle USB 3.0 speeds?
What is the maximum current this connector can handle?
Is this connector suitable for outdoor use?
Can I use this connector for charging only?
By following this documentation, users can effectively integrate the USB Type A Female connector into their projects for reliable data and power connections.