

A stop contact is a safety device used in electrical circuits to interrupt the flow of current. It is typically used in conjunction with control systems to ensure safe operation of machinery or electrical equipment. Stop contacts are commonly found in industrial automation systems, emergency stop mechanisms, and motor control circuits. Their primary purpose is to provide a reliable means of halting operations in case of an emergency or malfunction.








Below are the general technical specifications for a standard stop contact. Note that specific models may vary slightly in their ratings.
| Parameter | Specification |
|---|---|
| Rated Voltage | 24V DC / 230V AC |
| Rated Current | 10A |
| Contact Configuration | Normally Open (NO) or Normally Closed (NC) |
| Operating Temperature | -25°C to 70°C |
| Mechanical Durability | 1,000,000 operations |
| Electrical Durability | 100,000 operations |
| Mounting Style | Panel-mounted or DIN rail-mounted |
| Terminal Type | Screw terminals |
The stop contact typically has two or more terminals for wiring. Below is a description of the terminal configuration:
| Pin/Terminal | Description |
|---|---|
| Terminal 1 | Input connection for the circuit |
| Terminal 2 | Output connection for the circuit |
| Ground (optional) | Grounding terminal for safety (if available) |
A stop contact can be used with an Arduino UNO to create a safety mechanism in a control system. Below is an example circuit and code:
// Define the pin connected to the stop contact
const int stopContactPin = 2;
void setup() {
pinMode(stopContactPin, INPUT_PULLUP); // Set pin as input with pull-up resistor
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int stopState = digitalRead(stopContactPin); // Read the state of the stop contact
if (stopState == LOW) {
// Stop contact is pressed (circuit interrupted)
Serial.println("Stop contact activated! Halting operation.");
// Add code here to stop machinery or take safety action
} else {
// Stop contact is not pressed
Serial.println("System running normally.");
}
delay(500); // Delay for stability
}
Stop Contact Does Not Interrupt the Circuit
Stop Contact Fails to Reset
Arduino Reads Incorrect State
Overheating or Damage
Q: Can I use a stop contact in an AC circuit?
A: Yes, as long as the stop contact is rated for the voltage and current of the AC circuit.
Q: What is the difference between NO and NC configurations?
A: Normally Open (NO) contacts are open when inactive and close when activated. Normally Closed (NC) contacts are closed when inactive and open when activated.
Q: How often should I inspect a stop contact?
A: Regular inspections are recommended, especially in high-use or critical safety applications. Check for wear, debris, and proper operation at least once every six months.
Q: Can I use a stop contact for low-power circuits?
A: Yes, stop contacts can be used in low-power circuits as long as the voltage and current ratings are appropriate.