SE955 Mushroom Emergency Stop Push Button Switch
SE955 Mushroom Emergency Stop Push Button Switch
The SE955 Mushroom Emergency Stop Push Button Switch is a critical safety component designed for use in industrial and commercial applications where emergency stop functionality is essential. This switch is designed to provide a reliable and immediate shutdown mechanism in emergency situations, ensuring the safety of personnel and equipment.
The SE955 Mushroom Emergency Stop Push Button Switch is a normally closed (NC) switch that, when pressed, opens the circuit, disconnecting power to the connected device or system. The switch is designed to be highly visible and accessible, with a large, mushroom-shaped actuator that protrudes from the mounting surface, making it easily accessible in emergency situations.
| The SE955 Mushroom Emergency Stop Push Button Switch is suitable for use in a variety of industrial and commercial applications, including |
Industrial automation systems
Machine tools and manufacturing equipment
Conveyor systems and material handling equipment
Robotics and motion control systems
HVAC and building management systems
Medical devices and equipment
250V AC
10A
Normally Closed (NC)
Mushroom-shaped
Panel mounting, surface mounting, or DIN rail mounting
IP65
-20C to 60C
-30C to 80C
approximately 200g
30mm x 30mm x 60mm (W x H x D)
IEC 60947-5-5
EN 60947-5-5
CE marked
RoHS compliant
REACH compliant
The SE955 Mushroom Emergency Stop Push Button Switch is backed by a 2-year warranty and supported by a comprehensive documentation package, including datasheets, user manuals, and technical support.
SE955 Mushroom Emergency Stop Push Button Switch DocumentationOverviewThe SE955 Mushroom Emergency Stop Push Button Switch is a safety-critical component designed for emergency stop applications in industrial, commercial, and residential settings. This switch features a prominent mushroom-style push button and a rugged IP67-rated housing, making it suitable for harsh environments.Technical SpecificationsElectrical Rating: 10A, 250VAC
Contact Configuration: SPST-NC (Single Pole, Single Throw, Normally Closed)
Environmental Rating: IP67 (dust-tight and waterproof up to 1m immersion)
Operating Temperature: -25C to 70CConnections and PinoutThe SE955 switch has a 5-pin connector with the following pinout:| Pin | Function |
| --- | --- |
| 1 | Common (COM) |
| 2 | Normally Closed (NC) |
| 3 | Normally Open (NO) |
| 4 | Ground (GND) |
| 5 | Not connected (NC) |Code Examples### Example 1: Basic Emergency Stop in ArduinoThis example demonstrates how to connect the SE955 switch to an Arduino board and use it as an emergency stop button.```cpp
const int emergencyStopPin = 2; // Connect NC pin to digital pin 2void setup() {
pinMode(emergencyStopPin, INPUT_PULLUP);
}void loop() {
if (digitalRead(emergencyStopPin) == LOW) {
// Emergency stop button pressed, take action (e.g., shut down motor)
Serial.println("Emergency stop activated!");
// Add your emergency stop logic here
}
}
```### Example 2: Industrial Automation with Raspberry PiIn this example, the SE955 switch is used to control a motor in an industrial automation setup using a Raspberry Pi.```python
import RPi.GPIO as GPIOGPIO.setmode(GPIO.BCM)
emergencyStopPin = 17 # Connect NC pin to GPIO 17GPIO.setup(emergencyStopPin, GPIO.IN, pull_up_down=GPIO.PUD_UP)while True:
if GPIO.input(emergencyStopPin) == GPIO.LOW:
# Emergency stop button pressed, shut down motor
print("Emergency stop activated!")
# Add your motor shutdown logic here
break
```### Example 3: Home Automation with ESP32This example demonstrates how to use the SE955 switch to control a relay module connected to an ESP32 board in a home automation setup.```cpp
#include <WiFi.h>
#include <Relay.h>const int relayPin = 18; // Connect relay module to digital pin 18
const int emergencyStopPin = 5; // Connect NC pin to digital pin 5Relay relay(relayPin);void setup() {
pinMode(emergencyStopPin, INPUT_PULLUP);
}void loop() {
if (digitalRead(emergencyStopPin) == LOW) {
// Emergency stop button pressed, turn off relay
relay.off();
Serial.println("Emergency stop activated!");
// Add your additional logic here
}
}
```These code examples illustrate how to integrate the SE955 Mushroom Emergency Stop Push Button Switch into various IoT projects, emphasizing its importance in ensuring safety and reliability in critical applications.