

The Pushbutton STOP is a momentary switch designed to interrupt an electrical circuit when pressed. It is commonly used in safety-critical applications to stop machines, processes, or systems immediately. This component is an essential part of emergency stop mechanisms in industrial, commercial, and even DIY projects. Its simple operation and reliability make it a popular choice for controlling power flow in circuits.








The Pushbutton STOP is a normally open (NO) momentary switch, meaning it only interrupts the circuit while pressed. Below are its key technical details:
| Parameter | Value |
|---|---|
| Operating Voltage | 3V to 250V (AC/DC) |
| Maximum Current Rating | 3A |
| Contact Resistance | ≤ 50 mΩ |
| Insulation Resistance | ≥ 100 MΩ |
| Mechanical Durability | ≥ 1,000,000 cycles |
| Operating Temperature | -25°C to +85°C |
| Mounting Style | Panel mount |
| Switch Type | Momentary, Normally Open (NO) |
The Pushbutton STOP typically has two terminals for connection:
| Pin Name | Description |
|---|---|
| Terminal 1 (Input) | Connects to the power source or signal input. |
| Terminal 2 (Output) | Connects to the load or circuit to be interrupted. |
The Pushbutton STOP can be used with an Arduino UNO to stop a process or reset a system. Below is an example circuit and code:
// Define the pin connected to the Pushbutton STOP
const int buttonPin = 2; // Digital pin 2
const int ledPin = 13; // Built-in 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 initially
}
void loop() {
int buttonState = digitalRead(buttonPin); // Read the button state
if (buttonState == LOW) { // Button pressed (LOW due to pull-up)
digitalWrite(ledPin, LOW); // Turn off LED to simulate stopping a process
delay(1000); // Debounce delay
} else {
digitalWrite(ledPin, HIGH); // Keep LED on when button is not pressed
}
}
Q: Can the Pushbutton STOP handle AC and DC circuits?
A: Yes, it is designed to handle both AC and DC circuits within its voltage and current ratings.
Q: How do I implement debouncing in software?
A: Use a small delay (e.g., 50ms) after detecting a button press to filter out noise or false triggers.
Q: Is the Pushbutton STOP waterproof?
A: Standard models are not waterproof. For outdoor or wet environments, use a waterproof version or install it in a sealed enclosure.
Q: Can I use this button to control high-power devices?
A: No, the button is rated for a maximum of 3A. Use a relay or contactor for high-power applications.