

The HK19F-DC Relay is an electromagnetic switching device commonly used in AUX/RCA audio boards. It allows low-voltage control circuits to manage higher voltage or current signals, making it ideal for audio signal routing or power control applications. This relay is compact, reliable, and designed for use in low-power electronic systems.








| Parameter | Value |
|---|---|
| Coil Voltage | 5V DC, 12V DC, or 24V DC |
| Contact Configuration | SPDT (Single Pole Double Throw) |
| Contact Rating | 1A at 30V DC / 0.5A at 125V AC |
| Coil Resistance | Varies by model (e.g., 5V: ~70Ω) |
| Switching Time | Operate: ≤10ms, Release: ≤5ms |
| Insulation Resistance | ≥100MΩ at 500V DC |
| Dielectric Strength | 1000V AC (1 minute) |
| Dimensions | 19mm x 15.5mm x 10mm |
| Operating Temperature | -40°C to +85°C |
The HK19F-DC Relay typically has 5 pins. The pinout is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil (+) | Positive terminal of the relay coil |
| 2 | Coil (-) | Negative terminal of the relay coil |
| 3 | Common (COM) | Common terminal for the switching contacts |
| 4 | Normally Open (NO) | Connected to COM when the relay is activated |
| 5 | Normally Closed (NC) | Connected to COM when the relay is inactive |
Below is an example of how to control the HK19F-DC Relay using an Arduino UNO:
// Example: Controlling the HK19F-DC Relay with Arduino UNO
// Pin 7 is used to control the relay via a transistor or MOSFET
const int relayPin = 7; // Define the pin connected to the relay 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(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(1000); // Keep the relay off for 1 second
}
Note: Use a transistor or MOSFET to drive the relay coil, as the Arduino's GPIO pins cannot supply sufficient current directly.
Relay Not Activating
Relay Stuck in One State
Noise in Audio Signals
Voltage Spikes Damaging Components
Q: Can the HK19F-DC Relay handle AC loads?
A: Yes, it can handle AC loads up to 0.5A at 125V AC, but ensure the load does not exceed the contact rating.
Q: Is the relay suitable for high-frequency switching?
A: No, the HK19F-DC Relay is not designed for high-frequency switching. Use a solid-state relay for such applications.
Q: Can I use the relay directly with an Arduino GPIO pin?
A: No, the Arduino GPIO pin cannot supply enough current to drive the relay coil. Use a transistor or MOSFET as a driver.
By following this documentation, you can effectively integrate the HK19F-DC Relay into your electronic projects for reliable switching applications.