

The Hirose DF13A-2P-1.25H is a compact, right-angle header connector designed for easy PCB mounting. It features two pins with a 1.25mm pitch, making it ideal for applications requiring a small form factor and reliable electrical connections. This connector is widely used in consumer electronics, industrial equipment, and embedded systems due to its robust design and ease of use.








The following table outlines the key technical details of the Hirose DF13A-2P-1.25H connector:
| Parameter | Specification |
|---|---|
| Manufacturer | Hirose Electric |
| Part Number | DF13A-2P-1.25H |
| Connector Type | Right-Angle Header |
| Number of Pins | 2 |
| Pitch | 1.25mm |
| Mounting Type | Surface Mount (SMT) |
| Current Rating | 1A per pin |
| Voltage Rating | 100V AC/DC |
| Operating Temperature | -35°C to +85°C |
| Contact Material | Phosphor Bronze |
| Contact Plating | Tin |
| Housing Material | Polyamide (UL94V-0 rated) |
The DF13A-2P-1.25H has two pins, which are configured as follows:
| Pin Number | Description | Notes |
|---|---|---|
| 1 | Signal/Power Line | Can be used for data or power. |
| 2 | Ground (GND) | Connect to the circuit ground. |
While the DF13A-2P-1.25H is not directly compatible with the Arduino UNO's standard headers, it can be used to connect peripherals or sensors with a custom PCB. Below is an example of how to use the connector in a circuit with an Arduino:
// Example: Reading a sensor connected via DF13A-2P-1.25H connector
// Pin 1 of the connector is connected to Arduino pin A0 (analog input).
// Pin 2 of the connector is connected to GND.
const int sensorPin = A0; // Define the analog pin connected to the sensor
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the sensor value
Serial.print("Sensor Value: ");
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(500); // Wait for 500ms before the next reading
}
By following this documentation, users can effectively integrate the Hirose DF13A-2P-1.25H right-angle header into their projects and troubleshoot common issues with ease.