

The Jst1.25_2pin_male connector, manufactured by Tdat, is a compact 2-pin male connector with a 1.25mm pitch. It is widely used in electronic circuits for creating reliable and space-efficient wire-to-board or wire-to-wire connections. Its small size makes it ideal for applications where space is limited, such as in drones, robotics, and compact consumer electronics.








Below are the key technical details of the Jst1.25_2pin_male connector:
| Parameter | Specification |
|---|---|
| Manufacturer | Tdat |
| Connector Type | Male |
| Number of Pins | 2 |
| Pitch (Pin Spacing) | 1.25mm |
| Current Rating | Up to 1A |
| Voltage Rating | Up to 50V DC |
| Operating Temperature | -25°C to +85°C |
| Material | Plastic housing with metal contacts |
| Mounting Type | Through-hole or wire crimping |
The Jst1.25_2pin_male connector has two pins, which are typically used for power and ground or signal connections. The pin configuration is as follows:
| Pin Number | Description | Typical Use |
|---|---|---|
| 1 | VCC (Power) | Positive voltage input |
| 2 | GND (Ground) | Ground connection |
The Jst1.25_2pin_male connector can be used to connect a sensor or module to an Arduino UNO. Below is an example of connecting a sensor with a JST 1.25mm connector to the Arduino:
// Example code for reading data from a sensor connected via Jst1.25_2pin_male
// Pin 1 (VCC) is connected to Arduino 5V
// Pin 2 (GND) is connected to Arduino GND
// Signal pin of the sensor is connected to Arduino A0
const int sensorPin = A0; // Analog pin connected to the sensor signal
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the sensor value
Serial.print("Sensor Value: "); // Print the sensor value to the serial monitor
Serial.println(sensorValue);
delay(500); // Wait for 500ms before the next reading
}
Loose Connection:
Reverse Polarity:
Overheating:
Signal Interference:
Q1: Can I use the Jst1.25_2pin_male connector for high-power applications?
A1: No, this connector is designed for low-power applications with a maximum current rating of 1A and voltage rating of 50V DC.
Q2: What is the recommended wire gauge for this connector?
A2: The recommended wire gauge is 28-30 AWG to ensure proper crimping and secure connections.
Q3: Is the connector compatible with other JST series connectors?
A3: No, the Jst1.25_2pin_male connector is specifically designed for the 1.25mm pitch series and is not compatible with other JST series (e.g., 2.54mm pitch).
Q4: Can I use this connector in outdoor applications?
A4: The connector is not weatherproof. For outdoor use, additional protection (e.g., waterproof housing) is required.