

The JST SM 3 is a compact and reliable 3-pin connector manufactured by JST. It is widely used in electronic circuits for connecting wires securely, thanks to its robust locking mechanism. This connector is designed to ensure stable and durable connections, making it ideal for applications where vibration or movement might otherwise compromise the connection.








The JST SM 3 connector is designed for ease of use and durability. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Manufacturer | JST |
| Manufacturer Part ID | SM |
| Number of Pins | 3 |
| Connector Type | Wire-to-Wire |
| Current Rating | 3A (maximum) |
| Voltage Rating | 250V AC/DC (maximum) |
| Wire Gauge Compatibility | 22-28 AWG |
| Operating Temperature | -25°C to +85°C |
| Locking Mechanism | Yes |
| Material | Housing: Nylon, Contacts: Copper |
The JST SM 3 connector consists of three pins, typically used for power, ground, and signal connections. Below is the pin configuration:
| Pin Number | Typical Function | Description |
|---|---|---|
| 1 | VCC/Power | Supplies power to the connected device. |
| 2 | Signal | Transmits data or control signals. |
| 3 | GND | Ground connection for the circuit. |
The JST SM 3 connector is straightforward to use and can be integrated into a variety of circuits. Follow the steps below to use it effectively:
The JST SM 3 connector can be used to connect peripherals like LED strips to an Arduino UNO. Below is an example of how to connect and control an LED strip:
// Example code to control an LED strip using a JST SM 3 connector
// Ensure the LED strip is connected to the correct pins as described above.
const int ledPin = 9; // PWM pin connected to the signal line of the JST SM 3
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
analogWrite(ledPin, 128); // Set LED brightness to 50% (128 out of 255)
delay(1000); // Wait for 1 second
analogWrite(ledPin, 0); // Turn off the LED
delay(1000); // Wait for 1 second
}
By following these guidelines, you can ensure reliable and efficient use of the JST SM 3 connector in your electronic projects.