

The JST XH 3P Female connector is a 3-pin female connector from the JST XH series, designed for secure and reliable wire-to-board or wire-to-wire connections in electronic circuits. It is widely used in applications requiring compact, durable, and efficient connections, such as battery packs, sensors, and small electronic devices. Its standardized design ensures compatibility with corresponding male connectors and headers.








The JST XH 3P Female connector is designed to meet the needs of low-power and signal applications. Below are its key specifications:
| Parameter | Value | 
|---|---|
| Number of Pins | 3 | 
| Pitch (Pin Spacing) | 2.5 mm | 
| Rated Voltage | 250 V AC/DC | 
| Rated Current | 3 A (maximum) | 
| Contact Resistance | ≤ 20 mΩ | 
| Insulation Resistance | ≥ 1000 MΩ | 
| Operating Temperature | -25°C to +85°C | 
| Material (Housing) | Nylon 66 (UL94V-0 flame retardant) | 
| Material (Contacts) | Tin-plated copper alloy | 
The JST XH 3P Female connector has three pins, typically used for power, ground, and signal connections. Below is the pinout:
| Pin Number | Description | Common Usage | 
|---|---|---|
| 1 | VCC (Power) | Positive voltage supply | 
| 2 | GND (Ground) | Ground connection | 
| 3 | Signal/Data | Signal or data line | 
Crimping Wires:
Connecting to a Male Header:
Soldering to a PCB (if applicable):
The JST XH 3P Female connector can be used to connect a sensor or module to an Arduino UNO. Below is an example of wiring and code for reading data from a sensor connected via the JST XH 3P Female connector.
// Example code for reading an analog sensor connected via JST XH 3P Female
const int sensorPin = A0; // Signal pin connected to Analog Pin A0
void setup() {
  Serial.begin(9600); // Initialize serial communication at 9600 baud
  pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
  int sensorValue = analogRead(sensorPin); // Read the analog value from the sensor
  Serial.print("Sensor Value: "); 
  Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
  delay(500); // Wait for 500 milliseconds before the next reading
}
Loose Connections:
Reversed Polarity:
Intermittent Signal:
Q1: Can the JST XH 3P Female connector handle high currents?
A1: No, the connector is rated for a maximum current of 3 A. For higher currents, consider using connectors with higher current ratings.
Q2: Is the JST XH 3P Female connector waterproof?
A2: No, the connector is not waterproof. For outdoor or moisture-prone applications, use a waterproof connector.
Q3: Can I reuse the connector after crimping?
A3: While it is possible to remove and reuse the housing, the crimp terminals are typically not reusable. It is recommended to use new terminals for reliable connections.
Q4: What tools are required for crimping?
A4: A dedicated JST crimping tool is recommended for precise and secure crimping of the terminals.
By following this documentation, you can effectively use the JST XH 3P Female connector in your electronic projects.