

The Emergency Stop Push Button (Manufacturer: EAO, Part ID: 61-3440.4/1) is a critical safety device designed to immediately halt machinery or equipment during emergencies. It ensures quick access and response to prevent accidents, protecting both personnel and equipment. This push button is commonly used in industrial machinery, automation systems, and other environments where safety is paramount.








The following table outlines the key technical details of the EAO Emergency Stop Push Button (61-3440.4/1):
| Parameter | Specification |
|---|---|
| Manufacturer | EAO |
| Part ID | 61-3440.4/1 |
| Operating Voltage | 24V DC / 230V AC |
| Current Rating | 10A |
| Contact Configuration | 1 Normally Closed (NC) + 1 Normally Open (NO) |
| Actuator Type | Push-Pull |
| Mounting Hole Diameter | 22.5 mm |
| Mechanical Life | 50,000 operations |
| Degree of Protection | IP65 (dust-tight and water-resistant) |
| Operating Temperature | -25°C to +70°C |
| Compliance Standards | IEC 60947-5-1, EN ISO 13850 |
The Emergency Stop Push Button typically has the following pin configuration:
| Pin Label | Description |
|---|---|
| NC | Normally Closed contact (opens when pressed) |
| NO | Normally Open contact (closes when pressed) |
| COM | Common terminal for both NC and NO contacts |
Mounting the Push Button:
Wiring the Contacts:
Testing the Button:
The Emergency Stop Push Button can be used with an Arduino UNO to trigger an emergency shutdown in a project. Below is an example circuit and code:
// Emergency Stop Push Button Example
// This code monitors the button state and halts the system when pressed.
const int buttonPin = 2; // Pin connected to the NC terminal of the button
const int ledPin = 13; // Pin connected to an LED for indication
void setup() {
pinMode(buttonPin, INPUT_PULLUP); // Set button pin as input with pull-up resistor
pinMode(ledPin, OUTPUT); // Set LED pin as output
digitalWrite(ledPin, HIGH); // Turn on LED (system running)
}
void loop() {
int buttonState = digitalRead(buttonPin); // Read the button state
if (buttonState == LOW) { // Button pressed (NC contact opens)
digitalWrite(ledPin, LOW); // Turn off LED (system halted)
while (true) {
// Stay in this loop until the system is manually reset
}
}
}
| Issue | Solution |
|---|---|
| Button does not stop the machinery | Verify wiring connections, especially the COM and NC terminals. |
| Button does not reset after being pressed | Check for mechanical obstructions or damage to the actuator. |
| Button fails to operate in wet environments | Ensure the button is properly sealed and the IP65 rating is not compromised. |
| Arduino does not detect button press | Confirm the pull-up resistor is correctly connected and the pin configuration. |
| Button wears out quickly | Ensure the button is not being used beyond its rated mechanical life. |
Can this button be used outdoors?
What happens if the button is pressed accidentally?
Can I use this button with AC circuits?
How do I reset the button after pressing it?
By following this documentation, users can safely and effectively integrate the EAO Emergency Stop Push Button (61-3440.4/1) into their systems.