

The Relais BGK is an electromechanical switching device designed to control electrical circuits. It operates by using a coil that, when energized, either opens or closes its internal contacts, allowing or interrupting the flow of electricity. This component is widely used in applications where electrical isolation, high-current switching, or remote control of circuits is required.








The Relais BGK typically has 5 or more pins, depending on the model. Below is a general pinout for a 5-pin SPDT relay:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Coil (+) | Positive terminal of the relay coil. Connect to the control voltage source. |
| 2 | Coil (-) | Negative terminal of the relay coil. Connect to ground. |
| 3 | Common (COM) | Common terminal for the switching contacts. |
| 4 | Normally Open (NO) | Contact that remains open when the coil is not energized. Closes when energized. |
| 5 | Normally Closed (NC) | Contact that remains closed when the coil is not energized. Opens when energized. |
For DPDT relays, there will be additional pins for the second set of contacts.
Below is an example of how to control a Relais BGK with an Arduino UNO:
// Define the pin connected to the relay module
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Ensure the relay is off at startup
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: When connecting the relay to the Arduino, use a relay module with built-in driver circuitry or add a transistor and flyback diode to safely drive the relay.
Relay Not Switching
Contact Bounce
Overheating
Voltage Spikes Damaging Circuit
Relay Clicking but No Load Switching
Q: Can I use the Relais BGK with AC loads?
A: Yes, the relay can switch AC loads, provided the voltage and current are within the contact rating.
Q: How do I know if the relay is energized?
A: Many relay modules include an LED indicator that lights up when the coil is energized.
Q: Can I control the relay directly from a microcontroller?
A: Not directly. Use a transistor or relay driver circuit to handle the current required by the relay coil.
Q: What is the purpose of the flyback diode?
A: The flyback diode protects the control circuit from voltage spikes generated when the relay coil is de-energized.
By following this documentation, you can effectively integrate the Relais BGK into your projects and troubleshoot common issues.