The E Stop switch typically has two or more terminals for wiring. Below is a general description of the pin configuration:
Pin Label | Description |
---|---|
NC | Normally Closed terminal. When the switch is not pressed, this terminal is connected. |
NO | Normally Open terminal. When the switch is pressed, this terminal is connected. |
COM | Common terminal. Connects to either NC or NO depending on the switch state. |
Note: Some E Stop switches may have additional terminals for auxiliary contacts or indicator lights. Refer to the specific datasheet for details.
Wiring the E Stop:
Mounting:
Testing:
Important Considerations:
The E Stop can be used as an input to an Arduino UNO to trigger an emergency shutdown in software. Below is an example:
// Define the pin connected to the E Stop switch
const int eStopPin = 2; // Digital pin 2
void setup() {
pinMode(eStopPin, INPUT_PULLUP); // Configure pin as input with pull-up resistor
Serial.begin(9600); // Initialize serial communication
}
void loop() {
// Read the state of the E Stop switch
int eStopState = digitalRead(eStopPin);
if (eStopState == LOW) {
// If the switch is pressed (LOW), trigger emergency shutdown
Serial.println("Emergency Stop Activated!");
// Add code here to safely shut down your system
} else {
// If the switch is not pressed, system operates normally
Serial.println("System Running Normally");
}
delay(500); // Delay for stability
}
Note: The E Stop switch is connected between the pin and ground. The internal pull-up resistor ensures the pin reads HIGH when the switch is not pressed.
The switch does not cut off power when pressed:
The switch does not reset:
The switch activates intermittently:
Can I use an E Stop switch in low-voltage circuits?
Yes, as long as the switch's voltage and current ratings are compatible with your circuit.
What is the difference between NC and NO terminals?
NC (Normally Closed) terminals are connected when the switch is not pressed, while NO (Normally Open) terminals are connected when the switch is pressed.
How often should I test the E Stop switch?
It is recommended to test the switch regularly, such as during routine maintenance, to ensure it functions correctly.
Can I use an E Stop switch outdoors?
Yes, but ensure the switch has an appropriate IP rating (e.g., IP65 or higher) for protection against dust and water.
By following this documentation, you can safely and effectively integrate an E Stop switch into your system, ensuring reliable emergency power disconnection when needed.