

A NONF (Normally Open, Normally Closed) contactor is an electromechanical switch designed to control high-power circuits. It operates by using an electromagnetic coil to open or close its contacts, enabling or disabling the flow of electricity to a connected load. The unique feature of the NONF contactor is its dual contact configuration, which includes both normally open (NO) and normally closed (NC) contacts. This versatility makes it suitable for a wide range of applications.








| Parameter | Value/Range |
|---|---|
| Coil Voltage | 12V DC, 24V DC, 110V AC, 230V AC |
| Contact Configuration | 1 NO + 1 NC, 2 NO + 2 NC |
| Rated Current | 10A, 25A, 50A, or higher (varies by model) |
| Rated Voltage | Up to 690V AC |
| Mechanical Life | 10 million operations |
| Electrical Life | 1 million operations |
| Operating Temperature | -25°C to +55°C |
| Mounting Type | DIN rail or panel-mounted |
The NONF contactor typically has the following pin configuration:
| Pin Label | Description |
|---|---|
| L1, L2, L3 | Input power terminals for 3-phase AC (if applicable) |
| T1, T2, T3 | Output terminals to the load |
| Pin Label | Description |
|---|---|
| A1 | Positive terminal for the control coil |
| A2 | Negative terminal for the control coil |
| Pin Label | Description |
|---|---|
| NO | Normally Open contact (closes when coil is energized) |
| NC | Normally Closed contact (opens when coil is energized) |
A1 terminal.A2 terminal.L1, L2, and L3 terminals (for 3-phase systems) or L1 and L2 (for single-phase systems).T1, T2, T3).A1 and A2.Below is an example of how to control a 12V DC NONF contactor using an Arduino UNO and a relay module.
// 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 (and contactor) ON
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the contactor ON for 5 seconds
// Turn the relay (and contactor) OFF
digitalWrite(relayPin, LOW);
delay(5000); // Keep the contactor OFF for 5 seconds
}
Note: The relay module is used to isolate the Arduino from the high-power contactor. Ensure the relay module can handle the contactor's coil current.
Contactor Does Not Operate:
Contacts Overheat:
Excessive Noise During Operation:
Auxiliary Contacts Not Functioning:
A1 and A2) to ensure proper control voltage is applied.By following this documentation, users can effectively integrate and troubleshoot a NONF contactor in their electrical systems.