Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use EMERGENCY STOP: Examples, Pinouts, and Specs

Image of EMERGENCY STOP
Cirkit Designer LogoDesign with EMERGENCY STOP in Cirkit Designer

Introduction

The EMERGENCY STOP (Manufacturer: CNAOM, Part ID: 4 PIN) is a critical safety device designed to immediately halt the operation of machinery or equipment in emergency situations. It ensures the safety of operators and prevents accidents by cutting off power or stopping motion when activated. This component is widely used in industrial, manufacturing, and automation systems where safety is paramount.

Explore Projects Built with EMERGENCY STOP

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Electromechanical Pump Control Circuit with Emergency Stop
Image of Pelton.: A project utilizing EMERGENCY STOP in a practical application
This circuit is designed to control a pump using a contactor that is manually operated by a switch and can be overridden by an emergency stop. The contactor enables power from an AC power outlet to the pump, and the emergency stop can interrupt the power circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino Nano Controlled Relay System with Safety Interlocks
Image of HYD: A project utilizing EMERGENCY STOP in a practical application
This circuit includes an Arduino Nano microcontroller interfaced with multiple pushbuttons, limit switches, an emergency stop, a 2-channel relay module, and a 1-channel relay module. The Arduino controls the relay modules based on inputs from the pushbuttons and limit switches, which likely serve as user interfaces and position or safety sensors. The circuit is powered by a 5V power supply unit (PSU), which is connected to an AC supply, and the emergency stop is configured to potentially interrupt the circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Emergency Alert System with NUCLEO-F072RB, SIM800L, and GPS NEO 6M
Image of women safety: A project utilizing EMERGENCY STOP in a practical application
This circuit is an emergency alert system that uses a NUCLEO-F072RB microcontroller to send SMS alerts and make calls via a SIM800L GSM module, while obtaining location data from a GPS NEO 6M module. The system is powered by a Li-ion battery and includes a TP4056 module for battery charging and protection, with a rocker switch to control power to the microcontroller.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino Mega 2560 Emergency Traffic Control System with RFID and I2C LCD
Image of ETCS: A project utilizing EMERGENCY STOP in a practical application
This circuit is an emergency traffic control system using an Arduino Mega 2560, multiple traffic light modules, RFID readers, and I2C LCD displays. The system controls the traffic lights to rotate green signals among four modules and switches to an emergency mode when an RFID tag is scanned, displaying messages on the LCDs and prioritizing the first traffic light module.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with EMERGENCY STOP

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of Pelton.: A project utilizing EMERGENCY STOP in a practical application
Electromechanical Pump Control Circuit with Emergency Stop
This circuit is designed to control a pump using a contactor that is manually operated by a switch and can be overridden by an emergency stop. The contactor enables power from an AC power outlet to the pump, and the emergency stop can interrupt the power circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of HYD: A project utilizing EMERGENCY STOP in a practical application
Arduino Nano Controlled Relay System with Safety Interlocks
This circuit includes an Arduino Nano microcontroller interfaced with multiple pushbuttons, limit switches, an emergency stop, a 2-channel relay module, and a 1-channel relay module. The Arduino controls the relay modules based on inputs from the pushbuttons and limit switches, which likely serve as user interfaces and position or safety sensors. The circuit is powered by a 5V power supply unit (PSU), which is connected to an AC supply, and the emergency stop is configured to potentially interrupt the circuit for safety purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of women safety: A project utilizing EMERGENCY STOP in a practical application
Battery-Powered Emergency Alert System with NUCLEO-F072RB, SIM800L, and GPS NEO 6M
This circuit is an emergency alert system that uses a NUCLEO-F072RB microcontroller to send SMS alerts and make calls via a SIM800L GSM module, while obtaining location data from a GPS NEO 6M module. The system is powered by a Li-ion battery and includes a TP4056 module for battery charging and protection, with a rocker switch to control power to the microcontroller.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of ETCS: A project utilizing EMERGENCY STOP in a practical application
Arduino Mega 2560 Emergency Traffic Control System with RFID and I2C LCD
This circuit is an emergency traffic control system using an Arduino Mega 2560, multiple traffic light modules, RFID readers, and I2C LCD displays. The system controls the traffic lights to rotate green signals among four modules and switches to an emergency mode when an RFID tag is scanned, displaying messages on the LCDs and prioritizing the first traffic light module.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Industrial machinery and equipment
  • Conveyor systems
  • Robotics and automation systems
  • Elevators and escalators
  • Laboratory and testing equipment
  • Any system requiring immediate shutdown in emergencies

Technical Specifications

Key Technical Details

Parameter Specification
Manufacturer CNAOM
Part ID 4 PIN
Operating Voltage 24V DC / 110V AC / 220V AC (varies by model)
Current Rating 10A
Contact Configuration Normally Closed (NC) and Normally Open (NO)
Mechanical Durability 1,000,000 cycles
Electrical Durability 50,000 cycles
Mounting Type Panel Mount
Operating Temperature -25°C to +55°C
Degree of Protection IP65 (Dust-tight and water-resistant)

Pin Configuration and Descriptions

The CNAOM 4 PIN Emergency Stop switch has four terminals, which are configured as follows:

Pin Number Label Description
1 NC1 Normally Closed contact 1 (opens when activated)
2 NO1 Normally Open contact 1 (closes when activated)
3 NC2 Normally Closed contact 2 (opens when activated)
4 NO2 Normally Open contact 2 (closes when activated)

Usage Instructions

How to Use the Component in a Circuit

  1. Wiring the Emergency Stop:

    • Connect the NC (Normally Closed) terminals (e.g., Pin 1 and Pin 3) in series with the power supply or control circuit. This ensures that the circuit is interrupted when the button is pressed.
    • Optionally, use the NO (Normally Open) terminals (e.g., Pin 2 and Pin 4) for signaling or triggering an alarm when the button is activated.
  2. Mounting the Switch:

    • Drill a hole in the control panel according to the switch's mounting diameter (typically 22mm or 30mm).
    • Secure the switch using the provided locking nut.
  3. Testing the Emergency Stop:

    • After installation, test the switch by pressing it to ensure it interrupts the circuit and stops the machinery.
    • Reset the switch by turning or pulling it back to its original position (depending on the model).

Important Considerations and Best Practices

  • Always ensure the Emergency Stop is easily accessible to operators.
  • Use appropriate wire gauges and connectors to handle the rated current.
  • Regularly inspect and test the switch to ensure proper functionality.
  • Do not bypass or disable the Emergency Stop under any circumstances.
  • For systems controlled by microcontrollers (e.g., Arduino), use the NO terminals to send a signal to the microcontroller for emergency handling.

Example Arduino Code

If you are using the Emergency Stop with an Arduino UNO to monitor its state, you can use the following code:

// Define the pin connected to the Emergency Stop NO terminal
const int emergencyStopPin = 2; // Digital pin 2

void setup() {
  pinMode(emergencyStopPin, INPUT_PULLUP); 
  // Set the pin as input with an internal pull-up resistor
  Serial.begin(9600); 
  // Initialize serial communication for debugging
}

void loop() {
  int buttonState = digitalRead(emergencyStopPin); 
  // Read the state of the Emergency Stop button

  if (buttonState == LOW) { 
    // LOW indicates the button is pressed (NO terminal closed)
    Serial.println("Emergency Stop Activated! Shutting down system...");
    // Add code here to safely shut down your system
  } else {
    Serial.println("System Running Normally.");
  }

  delay(500); 
  // Add a small delay to avoid excessive serial output
}

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
Emergency Stop does not interrupt power Incorrect wiring of NC terminals Verify wiring and ensure NC terminals are in series with the circuit.
Button does not reset after activation Mechanical fault or debris in the switch Inspect the switch for damage or debris and clean/replace if necessary.
False triggering of the Emergency Stop Electrical noise or loose connections Use shielded cables and ensure all connections are secure.
Arduino does not detect button press Incorrect pin configuration or wiring Verify the pin connection and ensure the correct pin is defined in the code.

FAQs

  1. Can I use the Emergency Stop with high-voltage systems?

    • Yes, as long as the voltage and current ratings of the switch are not exceeded.
  2. How often should I test the Emergency Stop?

    • It is recommended to test the switch at least once a month to ensure proper functionality.
  3. Can I use the Emergency Stop for signaling only?

    • Yes, you can use the NO terminals to send a signal to a controller or alarm system without interrupting the main power circuit.
  4. What happens if the Emergency Stop fails?

    • Regular maintenance and testing are crucial to prevent failure. If the switch fails, replace it immediately to maintain safety.

By following this documentation, you can safely and effectively integrate the CNAOM 4 PIN Emergency Stop into your system, ensuring reliable operation and enhanced safety.