

The JST-RCY_F is a compact and reliable electrical connector manufactured by JST. It is widely used in electronics for creating secure and durable connections between components. This connector features a robust locking mechanism, ensuring stable connections even in environments subject to vibration or movement. Its compact design makes it ideal for applications where space is limited.








The JST-RCY_F connector is designed to provide a secure and efficient electrical connection. Below are its key technical specifications:
| Parameter | Specification |
|---|---|
| Manufacturer | JST |
| Part ID | JST-RCY_F |
| Connector Type | Wire-to-wire |
| Number of Contacts | 2 |
| Current Rating | Up to 3 Amps |
| Voltage Rating | Up to 250V DC |
| Wire Gauge Compatibility | 22 AWG to 28 AWG |
| Operating Temperature | -25°C to +85°C |
| Housing Material | Nylon 66 (UL94V-0 flame retardant) |
| Locking Mechanism | Snap-lock |
The JST-RCY_F connector consists of two pins, typically used for power and ground connections. Below is the pin configuration:
| Pin Number | Description | Notes |
|---|---|---|
| Pin 1 | Positive (+) Terminal | Connect to the positive voltage source |
| Pin 2 | Negative (-) Terminal | Connect to ground or negative terminal |
The JST-RCY_F connector can be used to supply power to an Arduino UNO. Below is an example of how to connect a 7.4V LiPo battery with a JST-RCY_F connector to the Arduino's VIN and GND pins.
The following Arduino code demonstrates reading the battery voltage using an analog pin:
// Define the analog pin connected to the battery voltage divider
const int batteryPin = A0;
// Voltage divider resistor values (in ohms)
const float R1 = 10000.0; // Resistor connected to battery positive
const float R2 = 10000.0; // Resistor connected to ground
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(batteryPin); // Read the analog value
float voltage = (rawValue / 1023.0) * 5.0; // Convert to voltage (Arduino 5V ADC)
float batteryVoltage = voltage * ((R1 + R2) / R2); // Calculate actual battery voltage
Serial.print("Battery Voltage: ");
Serial.print(batteryVoltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Note: Use a voltage divider to ensure the battery voltage does not exceed the Arduino's analog input range (0-5V).
Loose Connections:
Overheating:
Polarity Reversal:
Crimping Issues:
Q: Can the JST-RCY_F handle AC voltage?
Q: Is the connector waterproof?
Q: Can I reuse the connector housing?
Q: What is the maximum wire length I can use?