

The TOMZN TOCT 1-25 is an electromechanical relay designed for switching applications. It operates by using an electromagnetic coil to open or close its internal contacts, enabling control of high-power circuits with low-power signals. This relay is versatile and suitable for a wide range of voltage and current ratings, making it ideal for industrial automation, home appliances, and other electrical control systems.








The TOMZN TOCT 1-25 relay is designed to handle moderate to high power loads with reliable performance. Below are its key technical details:
| Parameter | Value |
|---|---|
| Rated Voltage (Coil) | 12V DC / 24V DC / 230V AC |
| Rated Current (Contacts) | Up to 25A |
| Contact Configuration | SPST (Single Pole Single Throw) |
| Operating Temperature | -40°C to +70°C |
| Insulation Resistance | ≥ 100MΩ |
| Dielectric Strength | 2500V AC (coil to contacts) |
| Mounting Type | DIN Rail |
The relay typically features a set of terminals for both the coil and the load. Below is the pin configuration:
| Pin Number | Description |
|---|---|
| 1 | Coil Terminal (Positive) |
| 2 | Coil Terminal (Negative) |
| 3 | Common Contact (COM) |
| 4 | Normally Open Contact (NO) |
Below is an example of how to control the TOMZN TOCT 1-25 relay 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);
// Ensure the relay is off at startup
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay on
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay on for 5 seconds
// Turn the relay off
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay off for 5 seconds
}
Note: Use a transistor or relay driver module 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:
Contacts Not Switching:
Excessive Heating:
Noise or Chattering:
Q1: Can I use the relay with an AC load?
Yes, the TOMZN TOCT 1-25 relay can switch both AC and DC loads, provided the load voltage and current are within the relay's rated specifications.
Q2: Do I need a heatsink for the relay?
No, a heatsink is not required for this relay. However, ensure proper ventilation to prevent overheating during prolonged use.
Q3: Can I use this relay for motor control?
Yes, the relay is suitable for motor control applications, but ensure the motor's starting current does not exceed the relay's maximum current rating.
Q4: How do I know if the relay is working?
You can hear a clicking sound when the relay switches. Additionally, you can measure continuity between the COM and NO terminals to confirm operation.