

The 2x5 Shrouded Male Header is a connector featuring two rows of five pins, with a standard 2.54 mm (0.1 inch) pin spacing. Its shrouded design ensures proper alignment during mating and prevents accidental disconnections, making it a reliable choice for secure and durable connections in electronic circuits. This component is widely used in applications requiring compact, robust, and repeatable connections, such as programming interfaces, communication ports, and modular PCB designs.








| Parameter | Value |
|---|---|
| Pin Count | 10 (2 rows of 5 pins) |
| Pin Spacing | 2.54 mm (0.1 inch) |
| Current Rating | Typically 3 A per pin |
| Voltage Rating | Typically 250 V |
| Operating Temperature | -40°C to +105°C |
| Material (Housing) | Thermoplastic, UL94V-0 rated |
| Material (Pins) | Gold-plated or tin-plated copper alloy |
| Mounting Style | Through-hole or surface mount |
The 2x5 shrouded male header has two rows of pins, typically labeled as Row A and Row B. The pin numbering starts from the top-left corner (Pin 1) and alternates between rows.
| Pin Number | Row | Description (Typical Use) |
|---|---|---|
| 1 | A | Signal or Power (e.g., VCC) |
| 2 | B | Ground (GND) |
| 3 | A | Signal (e.g., SPI MOSI) |
| 4 | B | Signal (e.g., SPI MISO) |
| 5 | A | Signal (e.g., SPI SCK) |
| 6 | B | Ground (GND) |
| 7 | A | Signal (e.g., Reset) |
| 8 | B | Signal (e.g., Chip Select) |
| 9 | A | Reserved or Custom Signal |
| 10 | B | Reserved or Custom Signal |
Note: Pin assignments may vary depending on the application. Always refer to the specific circuit or device documentation.
The 2x5 shrouded male header is commonly used for ISP programming of microcontrollers, including the Arduino UNO. Below is an example of how to connect the header for SPI communication.
| Header Pin | Arduino UNO Pin |
|---|---|
| Pin 1 (VCC) | 5V |
| Pin 2 (GND) | GND |
| Pin 3 (MOSI) | D11 |
| Pin 4 (MISO) | D12 |
| Pin 5 (SCK) | D13 |
| Pin 7 (Reset) | Reset |
// Example code to communicate with an SPI device using the 2x5 header
#include <SPI.h>
void setup() {
// Initialize SPI communication
SPI.begin();
Serial.begin(9600);
Serial.println("SPI Communication Initialized");
}
void loop() {
// Example: Send data to an SPI device
digitalWrite(SS, LOW); // Select the SPI device
SPI.transfer(0x42); // Send a byte (0x42) to the device
digitalWrite(SS, HIGH); // Deselect the SPI device
delay(1000); // Wait for 1 second
}
Note: Ensure the
SSpin is correctly defined for your specific SPI device.
Misaligned Connection:
Cold Solder Joints:
Overheating:
Signal Interference:
Q: Can I use this header for high-speed signals?
Q: Is the shroud removable?
Q: Can I use this header with a ribbon cable?
Q: What tools are recommended for soldering this header?
By following this documentation, you can effectively integrate the 2x5 Shrouded Male Header into your electronic projects with confidence and reliability.