

The Emergency Button is a safety device designed to trigger an immediate response when pressed. It is commonly used in industrial, commercial, and public settings to alert personnel, activate emergency protocols, or shut down machinery in hazardous situations. Its robust design ensures reliability in critical scenarios, making it an essential component in safety systems.








| Parameter | Value |
|---|---|
| Operating Voltage | 12V to 24V DC |
| Contact Configuration | Normally Open (NO) or Normally Closed (NC) |
| Maximum Current Rating | 10A |
| Button Type | Push-to-activate, twist-to-reset |
| Material | High-durability plastic and metal |
| Mounting Style | Panel-mounted |
| Operating Temperature | -20°C to 70°C |
| IP Rating | IP65 (dust-tight and water-resistant) |
| Pin Name | Description |
|---|---|
| NO | Normally Open contact; closes when the button is pressed |
| NC | Normally Closed contact; opens when the button is pressed |
| COM | Common terminal; connects to either NO or NC based on the circuit design |
COM terminal.NO or NC terminal, depending on your configuration.The Emergency Button can be used with an Arduino UNO to trigger an alert or stop a process. Below is an example circuit and code:
COM terminal of the button to the Arduino's GND.NO terminal to a digital input pin (e.g., D2) on the Arduino.5V to ensure a stable signal.// Emergency Button Example Code
// This code monitors the button state and triggers an alert when pressed.
const int buttonPin = 2; // Pin connected to the NO terminal of the button
const int ledPin = 13; // Built-in LED for visual alert
void setup() {
pinMode(buttonPin, INPUT_PULLUP); // Set button pin as input with pull-up resistor
pinMode(ledPin, OUTPUT); // Set LED pin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int buttonState = digitalRead(buttonPin); // Read the button state
if (buttonState == LOW) { // Button pressed (NO contact closed)
digitalWrite(ledPin, HIGH); // Turn on the LED
Serial.println("Emergency Button Pressed!"); // Print alert message
} else {
digitalWrite(ledPin, LOW); // Turn off the LED
}
delay(100); // Small delay to debounce the button
}
Button Does Not Trigger the Circuit:
COM and NO/NC terminals are correctly connected.False Triggers or Unstable Behavior:
Button Fails in Harsh Environments:
Q: Can the Emergency Button be used with AC circuits?
A: Yes, as long as the voltage and current ratings of the button are not exceeded. Ensure proper insulation and safety precautions when working with AC circuits.
Q: How do I reset the button after pressing it?
A: Most emergency buttons are designed with a twist-to-reset mechanism. Rotate the button clockwise to reset it.
Q: Can I use the button for low-power applications?
A: Yes, the button can be used for low-power applications, such as triggering a microcontroller input, as long as the voltage and current are within the specified range.
Q: What is the lifespan of the Emergency Button?
A: The lifespan depends on the manufacturer and usage conditions but typically ranges from 50,000 to 100,000 cycles. Regular maintenance can extend its life.