

The Hirose DF13 Series Header, specifically the DF13-4P-1.25V, is a compact, high-density connector designed for wire-to-board applications. It features a secure locking mechanism to ensure reliable connections and is available in various pin counts to suit a wide range of applications. Its small form factor and robust design make it ideal for use in compact electronic devices, industrial equipment, and consumer electronics.








| Parameter | Value |
|---|---|
| Manufacturer | Hirose |
| Series | DF13 |
| Part Number | DF13-4P-1.25V |
| Connector Type | Wire-to-Board |
| Number of Positions | 4 |
| Pitch | 1.25 mm |
| Mounting Type | Surface Mount (SMT) |
| Current Rating | 1 A per pin |
| Voltage Rating | 100 V AC/DC |
| Operating Temperature | -35°C to +85°C |
| Locking Mechanism | Friction lock |
| Contact Material | Phosphor bronze |
| Contact Plating | Tin |
| Housing Material | Polyamide (UL94V-0 rated) |
The DF13-4P-1.25V 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) | Supplies power to the circuit |
| 2 | GND (Ground) | Ground connection |
| 3 | Signal/Data Line 1 | Transmits or receives data/signal |
| 4 | Signal/Data Line 2 | Transmits or receives data/signal |
The DF13-4P-1.25V can be used to connect sensors or modules to an Arduino UNO. Below is an example of wiring and code to read data from a sensor connected via the DF13 header.
// Example code to read data from a sensor connected via DF13-4P-1.25V
const int signalPin1 = 2; // Pin connected to Signal/Data Line 1
const int signalPin2 = 3; // Pin connected to Signal/Data Line 2
void setup() {
pinMode(signalPin1, INPUT); // Set Signal/Data Line 1 as input
pinMode(signalPin2, INPUT); // Set Signal/Data Line 2 as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int data1 = digitalRead(signalPin1); // Read data from Signal/Data Line 1
int data2 = digitalRead(signalPin2); // Read data from Signal/Data Line 2
// Print the data to the Serial Monitor
Serial.print("Data Line 1: ");
Serial.println(data1);
Serial.print("Data Line 2: ");
Serial.println(data2);
delay(500); // Wait for 500 ms before reading again
}
Loose Connections
Signal Loss or Noise
Overheating
Soldering Issues
Q1: Can the DF13-4P-1.25V be used in high-vibration environments?
A1: Yes, the secure locking mechanism ensures reliable connections even in high-vibration conditions.
Q2: What tools are recommended for crimping the mating receptacle?
A2: Use the Hirose-recommended crimping tool for optimal results and to avoid damaging the contacts.
Q3: Is the DF13-4P-1.25V compatible with other Hirose DF series connectors?
A3: The DF13 series is designed to mate specifically with other DF13 components. Compatibility with other DF series connectors is not guaranteed.
Q4: Can this connector handle high-speed data signals?
A4: Yes, the DF13 series is suitable for high-speed data signals, but proper PCB design and wiring practices must be followed to maintain signal integrity.