

The Relay HK4100F, manufactured by Boh, is an electromagnetic switch designed to control high voltage or high current circuits using a low voltage signal. Its compact design and reliable operation make it a versatile component in various applications. The relay is widely used in automation, control systems, home appliances, and industrial equipment. It allows for electrical isolation between the control circuit and the load, ensuring safety and efficiency.








| Parameter | Value |
|---|---|
| Manufacturer | Boh |
| Part ID | Relay HK4100F |
| Coil Voltage (Nominal) | 5V, 12V, 24V (varies by model) |
| Coil Resistance | 70Ω (5V model) |
| Contact Configuration | SPDT (Single Pole Double Throw) |
| Contact Rating | 10A at 250VAC / 10A at 30VDC |
| Switching Voltage | Max 250VAC / 30VDC |
| Switching Current | Max 10A |
| Dielectric Strength | 1500VAC (coil to contact) |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 19mm x 15.5mm x 15mm |
| Weight | Approx. 10g |
The Relay HK4100F has five pins, as described in the table below:
| 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) | Open when the relay is inactive; closes when activated |
| 5 | Normally Closed (NC) | Closed when the relay is inactive; opens when activated |
Below is an example of how to control the Relay HK4100F using an Arduino UNO:
// Define the pin connected to the relay's coil
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Start with the relay off
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay on
digitalWrite(relayPin, HIGH);
delay(1000); // Keep the relay on for 1 second
// Turn the relay off
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
Load Not Switching
Excessive Heat
Noise or Chattering
Q1: Can the Relay HK4100F be used with AC loads?
Yes, the relay can switch AC loads up to 250VAC, provided the current does not exceed 10A.
Q2: What is the purpose of the flyback diode?
The flyback diode protects the driving circuit from voltage spikes generated when the relay coil is de-energized.
Q3: Can I use the Relay HK4100F with a 3.3V microcontroller?
Yes, but you will need a transistor or relay driver circuit to amplify the control signal to the relay's rated coil voltage.
Q4: How do I know if the relay is activated?
You can hear a clicking sound when the relay switches, or you can measure the continuity between the COM and NO/NC pins.
By following this documentation, you can effectively integrate the Relay HK4100F into your projects and troubleshoot any issues that arise.