

The HK19F-DC is a compact relay designed for low voltage applications, featuring a Double Pole Double Throw (DPDT) configuration. This versatile relay is widely used in automation, control systems, and other electronic circuits where reliable switching is required. Its compact size, high reliability, and long service life make it an ideal choice for a variety of applications.








| Parameter | Value |
|---|---|
| Coil Voltage | 5V DC, 12V DC, 24V DC |
| Contact Configuration | DPDT (Double Pole Double Throw) |
| Contact Rating | 1A at 120V AC / 2A at 30V DC |
| Coil Resistance | Varies by voltage (e.g., 5V: ~70Ω) |
| Switching Voltage (Max) | 250V AC / 220V DC |
| Switching Current (Max) | 2A |
| Insulation Resistance | ≥100MΩ at 500V DC |
| Dielectric Strength | 1500V AC (1 minute) |
| Operating Temperature | -40°C to +70°C |
| Dimensions | 19mm x 15.5mm x 10.5mm |
The HK19F-DC relay has 8 pins, which are configured as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 (Positive) |
| 2 | Coil Terminal 2 (Negative) |
| 3 | Common Terminal for Pole 1 |
| 4 | Normally Closed (NC) for Pole 1 |
| 5 | Normally Open (NO) for Pole 1 |
| 6 | Common Terminal for Pole 2 |
| 7 | Normally Closed (NC) for Pole 2 |
| 8 | Normally Open (NO) for Pole 2 |
Below is an example of how to control the HK19F-DC relay using an Arduino UNO:
// Example: Controlling the HK19F-DC relay with an Arduino UNO
// Pin 7 is used to control the relay
const int relayPin = 7; // Define the pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay on
delay(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // Turn the relay off
delay(1000); // Keep the relay off for 1 second
}
Note: Use a transistor or relay driver module to interface the relay with the Arduino, as the Arduino's GPIO pins cannot directly supply enough current to drive the relay.
Relay Not Switching
Chattering or Unstable Operation
Load Not Switching
Burnt Contacts
Q: Can the HK19F-DC relay be used with AC loads?
A: Yes, the relay can switch AC loads up to 120V at 1A. Ensure the load does not exceed the specified ratings.
Q: Do I need a separate power supply for the relay?
A: It depends on your circuit. If the control circuit cannot supply sufficient current, use a separate power supply for the relay coil.
Q: How do I protect the relay from voltage spikes?
A: Use a flyback diode (e.g., 1N4007) across the coil terminals to suppress voltage spikes when the relay is turned off.
Q: Can I use the relay for high-frequency switching?
A: No, mechanical relays like the HK19F-DC are not suitable for high-frequency switching due to their slower response time and mechanical wear.