

The K30 is a versatile relay commonly used in electronic circuits for switching applications. It enables low-power control signals to manage higher power loads, making it an essential component in automation, control systems, and various industrial applications. The K30 relay provides electrical isolation between the control circuit and the load, ensuring safety and reliability in operation.








The K30 relay typically has 5 or 8 pins, depending on the configuration (SPDT or DPDT). Below is the pinout for the SPDT variant:
| 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 Closed (NC) | Connected to COM when the relay is not energized. |
| 5 | Normally Open (NO) | Connected to COM when the relay is energized. |
For the DPDT variant, there are additional pins for the second set of contacts.
| Pin Number | Name | Description |
|---|---|---|
| 6 | Common (COM2) | Common terminal for the second set of switching contacts. |
| 7 | Normally Closed (NC2) | Connected to COM2 when the relay is not energized. |
| 8 | Normally Open (NO2) | Connected to COM2 when the relay is energized. |
The K30 relay can be easily controlled using an Arduino UNO. Below is an example of how to connect and program the relay:
// Define the pin connected to the relay
const int relayPin = 8;
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); // 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
}
Relay Not Switching:
Chattering or Unstable Operation:
Load Not Turning On/Off:
Burnt Relay Contacts:
Q: Can the K30 relay handle AC loads?
Q: Do I need a transistor to control the relay with an Arduino?
Q: What is the purpose of the flyback diode?
Q: Can I use the K30 relay for high-frequency switching?
By following this documentation, you can effectively integrate the K30 relay into your electronic projects and troubleshoot common issues with ease.