The XT90 panel mounted connector is a high-current electrical connector designed for reliable and secure power connections. It is widely used in applications requiring high current handling, such as RC vehicles, drones, electric bikes, and other high-power systems. Its robust design, secure locking mechanism, and panel-mounting capability make it an excellent choice for both professional and hobbyist projects.
The XT90 panel mounted connector consists of two main terminals: positive (+) and negative (-). These terminals are clearly marked on the connector housing to ensure proper polarity during installation.
Pin | Description | Notes |
---|---|---|
Positive (+) | Positive terminal for power | Connect to the positive side of the circuit or battery. |
Negative (-) | Negative terminal for power | Connect to the negative side of the circuit or battery. |
Prepare the Wires:
Solder the Wires:
Mount the Connector:
Connect to the Circuit:
While the XT90 connector is not directly used with low-power devices like the Arduino UNO, it can be part of a power delivery system for high-current peripherals. For example, you can use the XT90 connector to supply power to a motor driver or other high-power components in an Arduino-based project.
// Example: Controlling a motor driver powered via an XT90 connector
// This code assumes the motor driver is connected to the Arduino UNO.
const int motorPin = 9; // PWM pin connected to the motor driver
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
analogWrite(motorPin, 128); // Run motor at 50% speed
delay(5000); // Keep motor running for 5 seconds
analogWrite(motorPin, 0); // Stop the motor
delay(2000); // Wait for 2 seconds before restarting
}
Note: Ensure the motor driver and other high-power components are properly powered via the XT90 connector, and the Arduino is powered separately to avoid overloading.
Issue | Possible Cause | Solution |
---|---|---|
Connector gets hot during operation | Exceeding the rated current or poor soldering | Ensure current is ≤ 90A and check solder joints. |
Loose connection between male and female | Dirt or debris in the connector | Clean the connector with isopropyl alcohol. |
Reverse polarity connection | Incorrect wiring | Double-check polarity markings before connecting. |
Difficulty mounting the connector | Incorrect panel cutout size | Ensure the cutout matches the specified dimensions (24mm x 12mm). |
Can the XT90 connector handle currents above 90A?
Is the XT90 connector waterproof?
Can I use thinner wires with the XT90 connector?
How do I disconnect the XT90 connector?
By following this documentation, you can effectively use the XT90 panel mounted connector in your high-power applications.