

The Kaki MY2N is an electromechanical relay manufactured by SMKN 2 Trenggalek. It is designed for switching applications, allowing low-power control signals to manage high-power loads. With its compact design and reliable performance, the Kaki MY2N is widely used in automation, industrial control systems, and home appliances. It is available in coil voltage variants of 12V or 24V, making it versatile for various circuit designs.








| Parameter | Value |
|---|---|
| Manufacturer | SMKN 2 Trenggalek |
| Part ID | SMKN 2 Trenggalek |
| Coil Voltage | 12V DC or 24V DC |
| Contact Configuration | DPDT (Double Pole Double Throw) |
| Contact Rating | 5A at 250V AC / 30V DC |
| Coil Resistance | 400Ω (12V version) / 1600Ω (24V version) |
| Operating Temperature | -40°C to +70°C |
| Insulation Resistance | ≥ 100MΩ at 500V DC |
| Dielectric Strength | 1500V AC for 1 minute |
| Dimensions | 28mm x 21mm x 36mm |
| Weight | Approximately 35g |
The Kaki MY2N relay has 8 pins, which are configured as follows:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal 1 (Positive) |
| 2 | Coil Terminal 2 (Negative) |
| 3 | Common Contact 1 (COM1) |
| 4 | Normally Open Contact 1 (NO1) |
| 5 | Normally Closed Contact 1 (NC1) |
| 6 | Common Contact 2 (COM2) |
| 7 | Normally Open Contact 2 (NO2) |
| 8 | Normally Closed Contact 2 (NC2) |
Below is an example of how to control the Kaki MY2N relay using an Arduino UNO:
// Define the relay control pin
const int relayPin = 7; // Connect this pin to the relay's coil terminal 1
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
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 sufficient current to the relay coil.
Relay Not Activating
Chattering or Unstable Operation
Contacts Not Switching Properly
Voltage Spikes in the Circuit
Q1: Can the Kaki MY2N relay switch DC loads?
A1: Yes, the relay can switch DC loads up to 30V at 5A. Ensure the load does not exceed these ratings.
Q2: Is the relay suitable for high-frequency switching?
A2: No, the Kaki MY2N is not designed for high-frequency switching. It is best suited for low-frequency applications.
Q3: Can I use the relay with a 5V control signal?
A3: No, the relay requires a 12V or 24V coil voltage. Use a transistor or relay driver circuit to interface a 5V control signal with the relay.
Q4: How do I test if the relay is working?
A4: Apply the rated coil voltage to the coil terminals and listen for a clicking sound, which indicates the relay is switching. You can also measure continuity between the COM and NO/NC contacts.