

The Relay MY2N is a compact electromagnetic relay manufactured by tptupstmj (Part ID: tptupstmj-0326). It features a Double Pole Double Throw (DPDT) configuration, making it suitable for switching applications that require moderate load handling. The relay operates with a coil voltage typically ranging from 5V to 24V, providing versatility for various control and automation systems.








| Parameter | Value |
|---|---|
| Manufacturer | tptupstmj |
| Part ID | tptupstmj-0326 |
| Relay Type | Electromagnetic |
| Configuration | DPDT (Double Pole Double Throw) |
| Coil Voltage Range | 5V DC to 24V DC |
| Contact Rating | 5A at 250V AC / 5A at 30V DC |
| Coil Resistance | Varies by coil voltage (e.g., 5V: ~70Ω) |
| Dielectric Strength | 1,000V AC (coil to contact) |
| Operating Temperature | -40°C to +70°C |
| Dimensions | 28mm x 21mm x 36mm |
| Mounting Type | PCB or socket |
The Relay MY2N has a total of 8 pins, as shown in the table below:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Coil Terminal 1 | Connect to one side of the relay coil |
| 2 | Coil Terminal 2 | Connect to the other side of the relay coil |
| 3 | Common 1 (COM1) | Common terminal for the first pole |
| 4 | Normally Open 1 | NO terminal for the first pole |
| 5 | Normally Closed 1 | NC terminal for the first pole |
| 6 | Common 2 (COM2) | Common terminal for the second pole |
| 7 | Normally Open 2 | NO terminal for the second pole |
| 8 | Normally Closed 2 | NC terminal for the second pole |
Below is an example of how to control the Relay MY2N using an Arduino UNO:
// Define the pin connected to the relay's coil
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Energize the relay (turn it on)
delay(1000); // Keep the relay on for 1 second
digitalWrite(relayPin, LOW); // De-energize the relay (turn it off)
delay(1000); // Keep the relay off for 1 second
}
Note: Connect the relay's coil terminals to the Arduino through a transistor or relay driver circuit, as the Arduino's GPIO pins cannot directly supply enough current to drive the relay.
Relay Not Switching
Contacts Not Conducting
Excessive Heat
Noise or Chattering
Q: Can the Relay MY2N handle AC loads?
A: Yes, it can handle AC loads up to 250V with a maximum current of 5A.
Q: Do I need a driver circuit to control the relay with a microcontroller?
A: Yes, use a transistor or relay driver IC to provide sufficient current to the relay coil.
Q: What is the purpose of the flyback diode?
A: The flyback diode protects the driving circuit from voltage spikes generated when the relay coil is de-energized.
Q: Can I use the Relay MY2N for high-frequency switching?
A: No, electromagnetic relays like the MY2N are not suitable for high-frequency switching due to mechanical limitations. Use a solid-state relay for such applications.