

The QTRX 13A, manufactured by Pololu (Part ID: HD 13A), is a high-performance relay designed for switching applications. It is capable of handling up to 13 amps of current, making it ideal for controlling high-power devices in electronic circuits. Its compact design ensures easy integration into various projects, including home automation, industrial control systems, and robotics.








The QTRX 13A relay is designed to provide reliable performance in demanding applications. Below are its key technical details:
| Parameter | Value |
|---|---|
| Manufacturer | Pololu |
| Part ID | HD 13A |
| Maximum Current Rating | 13 A |
| Operating Voltage | 5 V DC (coil voltage) |
| Contact Voltage Rating | Up to 250 V AC / 30 V DC |
| Contact Type | SPDT (Single Pole Double Throw) |
| Dimensions | 29 mm x 12.7 mm x 15 mm |
| Weight | 10 g |
The QTRX 13A relay has five pins, as described in the table below:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Coil+ | Positive terminal of the relay coil (connect to 5 V DC) |
| 2 | Coil- | Negative terminal of the relay coil (connect to ground) |
| 3 | Common (COM) | Common terminal for the relay switch |
| 4 | Normally Open (NO) | Connected to COM when the relay is activated (switch closed) |
| 5 | Normally Closed (NC) | Connected to COM when the relay is deactivated (switch open) |
Coil+ pin to a 5 V DC power source and the Coil- pin to ground. This energizes the relay coil and switches the contacts.COM and NO pins.COM and NC pins.Below is an example of how to control the QTRX 13A relay using an Arduino UNO:
// Example code to control the QTRX 13A relay with an Arduino UNO
const int relayPin = 7; // Pin connected to the relay's control circuit
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Activate the relay
delay(5000); // Keep the relay on for 5 seconds
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(5000); // Keep the relay off for 5 seconds
}
Note: Use a transistor or relay driver circuit between the Arduino and the relay to handle the coil current safely.
Relay Not Activating
Coil+ and Coil- pins. Ensure the control circuit can provide enough current.Load Not Switching
COM, NO, and NC pins.Voltage Spikes Damaging the Circuit
Coil+ and Coil- pins.Q: Can the QTRX 13A handle AC loads?
A: Yes, the relay can handle AC loads up to 250 V, provided the current does not exceed 13 A.
Q: What is the minimum voltage required to activate the relay?
A: The relay requires a 5 V DC supply to activate the coil.
Q: Can I use the QTRX 13A with a 3.3 V microcontroller?
A: Yes, but you will need a transistor or relay driver circuit to step up the control voltage to 5 V for the relay coil.
Q: Is the relay suitable for switching inductive loads?
A: Yes, but ensure proper snubber circuits or flyback diodes are used to suppress voltage spikes.