

The Hirose DF13A 4-Pin Header, manufactured by Hirose Electric, is a compact and reliable connector designed for securely connecting wires to a circuit board. It features a robust locking mechanism that ensures stable connections, even in environments subject to vibration or movement. Its small form factor makes it ideal for applications where space is limited, while its ease of integration supports a wide range of electronic projects.








| Parameter | Value |
|---|---|
| Manufacturer | Hirose Electric |
| Model Number | DF13A |
| Number of Pins | 4 |
| Pitch (Pin Spacing) | 1.25 mm |
| Rated Voltage | 100 V AC/DC |
| Rated Current | 1 A per pin |
| Operating Temperature | -35°C to +85°C |
| Contact Resistance | 30 mΩ max |
| Insulation Resistance | 1000 MΩ min |
| Locking Mechanism | Positive locking system |
| Mounting Style | Through-hole or surface-mount options |
The DF13A 4-Pin Header has four pins arranged in a single row with a 1.25 mm pitch. Below is the pin configuration:
| Pin Number | Description | Typical Use Case |
|---|---|---|
| 1 | VCC (Power Supply) | Connect to the positive voltage rail |
| 2 | GND (Ground) | Connect to the ground rail |
| 3 | Signal/Data Line 1 | Transmit or receive data |
| 4 | Signal/Data Line 2 | Transmit or receive data |
Soldering the Header:
Connecting Wires:
Locking Mechanism:
Wiring Example:
The DF13A 4-Pin Header can be used to connect sensors or modules to an Arduino UNO. Below is an example of wiring and code for reading data from a sensor connected via the DF13 header.
// Example code for reading data from a sensor connected via DF13A 4-Pin Header
const int signalPin1 = 2; // Pin 3 of DF13 header connected to Digital Pin 2
const int signalPin2 = 3; // Pin 4 of DF13 header connected to Digital Pin 3
void setup() {
pinMode(signalPin1, INPUT); // Set signalPin1 as input
pinMode(signalPin2, INPUT); // Set signalPin2 as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int data1 = digitalRead(signalPin1); // Read data from signalPin1
int data2 = digitalRead(signalPin2); // Read data from signalPin2
// Print the data to the Serial Monitor
Serial.print("Signal 1: ");
Serial.println(data1);
Serial.print("Signal 2: ");
Serial.println(data2);
delay(500); // Wait for 500ms before reading again
}
Loose Connections:
Bent Pins:
Signal Interference:
Overheating:
Q1: Can I use the DF13A 4-Pin Header for high-frequency signals?
A1: Yes, the DF13A is suitable for high-frequency signals, but ensure proper shielding and grounding to minimize interference.
Q2: What tools are recommended for crimping DF13 connectors?
A2: Use Hirose's recommended crimping tools or equivalent high-quality tools to ensure reliable connections.
Q3: Is the DF13A header compatible with other Hirose DF series connectors?
A3: The DF13A is specifically designed for DF13 series connectors. Compatibility with other DF series connectors may vary.
Q4: Can I use this header in outdoor applications?
A4: The DF13A is not weatherproof. For outdoor use, additional protection such as enclosures or conformal coatings is recommended.