

The JST SM 2 Male connector is a two-pin electrical connector designed for secure and reliable wire connections in electronic applications. Its compact design and locking mechanism make it ideal for ensuring stable connections in environments where vibration or movement might otherwise cause disconnections. This connector is widely used for power and signal connections in LED lighting systems, RC vehicles, drones, and other low-voltage electronic devices.








The JST SM 2 Male connector has two pins, typically used for power and ground connections. Below is the pin configuration:
| Pin Number | Designation | Description |
|---|---|---|
| 1 | V+ | Positive voltage or signal line |
| 2 | GND | Ground or negative line |
Wire Preparation:
Crimping the Contacts:
Inserting the Contacts:
Connecting to the Female Connector:
Disconnecting:
The JST SM 2 Male connector can be used to power an Arduino UNO or connect peripherals like LED strips. Below is an example of connecting an LED strip to an Arduino using the JST SM 2 Male connector.
// Example code to control an LED strip connected via JST SM 2 Male connector
// Ensure the LED strip is compatible with the Arduino's voltage and current limits.
#define LED_PIN 9 // Pin connected to the LED strip's signal line
void setup() {
pinMode(LED_PIN, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(LED_PIN, HIGH); // Turn the LED strip on
delay(1000); // Wait for 1 second
digitalWrite(LED_PIN, LOW); // Turn the LED strip off
delay(1000); // Wait for 1 second
}
Loose Connections:
Polarity Reversal:
Overheating:
Difficulty in Disconnecting:
Q: Can the JST SM 2 Male connector handle high-current applications?
A: No, the connector is rated for a maximum current of 3A. For higher currents, consider using connectors with higher ratings.
Q: Is the JST SM 2 Male connector waterproof?
A: No, the standard JST SM 2 Male connector is not waterproof. For outdoor or moisture-prone environments, use additional waterproofing measures.
Q: Can I reuse the connector after crimping?
A: While it is possible to remove and reuse the housing, the crimped contacts are typically not reusable. It is recommended to use new contacts for reliable connections.
Q: What tools are required for crimping?
A: A dedicated JST crimping tool is recommended for precise and secure crimps. Generic crimping tools may not provide optimal results.
By following this documentation, you can effectively use the JST SM 2 Male connector in your electronic projects, ensuring reliable and secure connections.