

The XT90FEMALE is a high-current connector designed for use in RC (radio-controlled) applications, such as drones, electric vehicles, and high-power battery systems. It features a secure locking mechanism to ensure a reliable connection and is capable of handling up to 90A of continuous current. Its robust design and heat-resistant materials make it ideal for demanding applications where safety and performance are critical.








The XT90FEMALE connector is engineered to provide a safe and efficient connection for high-current applications. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Rated Current | 90A (continuous) |
| Peak Current | 120A (for short durations) |
| Voltage Rating | Up to 500V DC |
| Contact Resistance | ≤ 0.6 mΩ |
| Material (Housing) | Nylon/Polyamide (heat-resistant) |
| Material (Contacts) | Gold-plated copper |
| Operating Temperature | -20°C to 120°C |
| Connector Type | Female |
| Dimensions | 21.5mm x 8mm x 15mm |
| Weight | ~7.5g |
The XT90FEMALE connector has two primary terminals for power connections:
| Pin | Description | Notes |
|---|---|---|
| + | Positive terminal | Connect to the positive lead of the battery |
| - | Negative terminal | Connect to the negative lead of the battery |
The connector is keyed to prevent reverse polarity connections, ensuring safe and correct usage.
Soldering the Wires:
Connecting to a Male XT90 Connector:
Mounting:
While the XT90FEMALE is not directly used with low-power devices like the Arduino UNO, it can be part of a power delivery system. For example, you can use it to connect a high-power battery to a voltage regulator, which then powers the Arduino.
// Example: Reading battery voltage via a voltage divider connected to Arduino UNO
// Ensure the XT90FEMALE is securely connected to the battery and voltage regulator.
const int voltagePin = A0; // Analog pin connected to the voltage divider
float voltage = 0.0;
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(voltagePin); // Read the analog input
voltage = sensorValue * (5.0 / 1023.0) * 11;
// Assuming a 10:1 voltage divider, adjust multiplier as needed
Serial.print("Battery Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait 1 second before the next reading
}
Note: Use a voltage divider to step down the battery voltage to a safe level for the Arduino's analog input (0-5V).
Loose Connection:
Overheating:
Reverse Polarity Connection:
Poor Solder Joint:
Q1: Can the XT90FEMALE handle AC currents?
A1: While the XT90FEMALE is primarily designed for DC applications, it can handle AC currents within its voltage and current ratings. However, it is not commonly used for AC systems.
Q2: Is the XT90FEMALE waterproof?
A2: No, the XT90FEMALE is not waterproof. For outdoor or wet environments, consider using additional waterproofing measures, such as heat shrink tubing or silicone sealant.
Q3: Can I use the XT90FEMALE with lower current applications?
A3: Yes, the XT90FEMALE can be used with lower current applications, but it may be overkill for such use cases. Consider smaller connectors for low-power systems.
Q4: How do I disconnect the XT90FEMALE from the XT90MALE?
A4: Firmly grip both connectors and pull them apart while pressing the locking tabs to release the connection.
By following this documentation, you can safely and effectively use the XT90FEMALE connector in your high-current applications.