









The NONF contactor typically has the following terminals:
| Pin/Terminal | Description |
|---|---|
| A1, A2 | Coil terminals for energizing the contactor (polarity depends on the coil type) |
| L1, L2, L3 | Input terminals for the main power supply (three-phase systems) |
| T1, T2, T3 | Output terminals for the load (three-phase systems) |
| NO (Normally Open) | Contact that closes when the coil is energized |
| NC (Normally Closed) | Contact that opens when the coil is energized |
| Auxiliary Contacts | Optional terminals for additional control or signaling purposes |
Wiring the Contactor:
Important Considerations:
Example: Controlling a Motor with Arduino UNO: Below is an example of how to control a NONF contactor using an Arduino UNO. The Arduino sends a signal to a relay module, which in turn energizes the contactor's coil.
// Define the pin connected to the relay module
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() {
// Turn the contactor ON
digitalWrite(relayPin, HIGH); // Energize the relay
delay(5000); // Keep the contactor ON for 5 seconds
// Turn the contactor OFF
digitalWrite(relayPin, LOW); // De-energize the relay
delay(5000); // Keep the contactor OFF for 5 seconds
}
Note: Ensure the relay module is rated to handle the contactor's coil voltage and current. Use a flyback diode across the contactor's coil terminals to protect the circuit from voltage spikes.
Contactor Does Not Energize:
Contacts Overheat:
Chattering Noise:
Auxiliary Contacts Not Functioning:
Q: Can I use a NONF contactor for DC loads?
A: Yes, but ensure the contactor is rated for DC operation. DC loads require special contactors due to the absence of zero-crossing in DC circuits.
Q: How do I select the right contactor for my application?
A: Consider the load's voltage, current, and type (AC or DC). Also, account for the control voltage and any additional features like auxiliary contacts.
Q: Can I mount the contactor in any orientation?
A: Most contactors can be mounted in any orientation, but refer to the manufacturer's datasheet for specific recommendations.
Q: What is the purpose of the flyback diode across the coil?
A: The flyback diode protects the control circuit from voltage spikes generated when the coil is de-energized.
By following this documentation, you can effectively integrate and troubleshoot a NONF contactor in your electrical or automation projects.