

The DY-HV20T is a high-voltage relay designed for switching applications in various electronic circuits. It features a compact design, high insulation resistance, and the ability to handle high voltage loads. This makes it an ideal choice for power management and control systems. The DY-HV20T is widely used in industrial automation, home appliances, and energy management systems where reliable high-voltage switching is required.








| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC |
| Switching Voltage | Up to 20kV |
| Switching Current | Up to 1A |
| Insulation Resistance | ≥ 1000MΩ |
| Contact Resistance | ≤ 50mΩ |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 30mm x 15mm x 10mm |
| Weight | 12g |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Coil+ | Positive terminal of the relay coil (12V DC) |
| 2 | Coil- | Negative terminal of the relay coil (GND) |
| 3 | Common (COM) | Common terminal for the relay contacts |
| 4 | Normally Open (NO) | Open circuit when the relay is inactive; closes when activated |
| 5 | Normally Closed (NC) | Closed circuit when the relay is inactive; opens when activated |
Coil+ pin to a 12V DC power source and the Coil- pin to ground. This energizes the relay coil and switches the contacts.COM and NO pins. The circuit will close when the relay is activated.COM and NC pins. The circuit will open when the relay is activated.Below is an example of how to control the DY-HV20T relay using an Arduino UNO:
// Define the pin connected to the relay's Coil+ terminal
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
}
void loop() {
// Activate the relay by setting the pin HIGH
digitalWrite(relayPin, HIGH);
delay(1000); // Keep the relay on for 1 second
// Deactivate the relay by setting the pin LOW
digitalWrite(relayPin, LOW);
delay(1000); // Keep the relay off for 1 second
}
Note: Use a transistor or relay driver circuit to interface the Arduino with the relay, as the Arduino's GPIO pins cannot directly supply the required current for the relay coil.
Relay Not Activating:
Contacts Not Switching:
COM, NO, and NC pins.Voltage Spikes Damaging the Circuit:
Coil+ and Coil- pins, with the cathode connected to Coil+.Overheating or Damage:
Q: Can the DY-HV20T handle AC loads?
A: Yes, the relay can switch both AC and DC loads, provided the voltage and current ratings are not exceeded.
Q: What is the purpose of the flyback diode?
A: The flyback diode protects the driving circuit from voltage spikes generated when the relay coil is de-energized.
Q: Can I use the DY-HV20T with a 5V microcontroller?
A: Yes, but you will need a transistor or relay driver circuit to step up the control signal to 12V for the relay coil.
Q: How do I ensure safety when using high voltages?
A: Use proper insulation, maintain adequate spacing between high-voltage connections, and avoid direct contact with live circuits.