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

How to Use Stop Kontaks: Examples, Pinouts, and Specs

Image of Stop Kontaks
Cirkit Designer LogoDesign with Stop Kontaks in Cirkit Designer

Introduction

A stop contact is a safety device used in electrical circuits to interrupt the flow of current. It is typically used in conjunction with control systems to ensure safe operation of machinery or electrical equipment. Stop contacts are commonly found in industrial automation systems, emergency stop mechanisms, and motor control circuits. Their primary purpose is to provide a reliable means of halting operations in case of an emergency or malfunction.

Explore Projects Built with Stop Kontaks

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 Stop Kontaks 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
Battery-Powered Emergency Alert System with NUCLEO-F072RB, SIM800L, and GPS NEO 6M
Image of women safety: A project utilizing Stop Kontaks 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 UNO-Based Ultrasonic Security System with SIM800L GSM Module
Image of Home security system: A project utilizing Stop Kontaks in a practical application
This circuit features an Arduino UNO connected to an HC-SR04 ultrasonic sensor for distance measurement and a SIM800L GSM module for communication. The Arduino controls an LED, which lights up based on the distance detected by the ultrasonic sensor. When a certain distance threshold is exceeded, the Arduino uses the SIM800L module to make a phone call, indicating motion detection. A 48V to 5V converter supplies power to the SIM800L and the ultrasonic sensor.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Based Automatic Passenger Counter and Temperature Sensor with Wi-Fi Connectivity
Image of Embedded Circuit: A project utilizing Stop Kontaks in a practical application
This circuit is an automatic passenger counter and temperature sensor system powered by a solar charger. It uses an ESP32 microcontroller to interface with two capacitive proximity sensors for counting passengers and a DHT22 sensor for monitoring temperature and humidity, with data being sent to a Blynk mobile app and Google Sheets for real-time tracking and logging.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Stop Kontaks

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 Stop Kontaks 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 women safety: A project utilizing Stop Kontaks 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 Home security system: A project utilizing Stop Kontaks in a practical application
Arduino UNO-Based Ultrasonic Security System with SIM800L GSM Module
This circuit features an Arduino UNO connected to an HC-SR04 ultrasonic sensor for distance measurement and a SIM800L GSM module for communication. The Arduino controls an LED, which lights up based on the distance detected by the ultrasonic sensor. When a certain distance threshold is exceeded, the Arduino uses the SIM800L module to make a phone call, indicating motion detection. A 48V to 5V converter supplies power to the SIM800L and the ultrasonic sensor.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Embedded Circuit: A project utilizing Stop Kontaks in a practical application
ESP32-Based Automatic Passenger Counter and Temperature Sensor with Wi-Fi Connectivity
This circuit is an automatic passenger counter and temperature sensor system powered by a solar charger. It uses an ESP32 microcontroller to interface with two capacitive proximity sensors for counting passengers and a DHT22 sensor for monitoring temperature and humidity, with data being sent to a Blynk mobile app and Google Sheets for real-time tracking and logging.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Emergency stop buttons in industrial machinery
  • Motor control circuits for safe operation
  • Safety interlocks in automated systems
  • Electrical panels for circuit isolation
  • Overload protection in high-power systems

Technical Specifications

Below are the general technical specifications for a standard stop contact. Note that specific models may vary slightly in their ratings.

Parameter Specification
Rated Voltage 24V DC / 230V AC
Rated Current 10A
Contact Configuration Normally Open (NO) or Normally Closed (NC)
Operating Temperature -25°C to 70°C
Mechanical Durability 1,000,000 operations
Electrical Durability 100,000 operations
Mounting Style Panel-mounted or DIN rail-mounted
Terminal Type Screw terminals

Pin Configuration and Descriptions

The stop contact typically has two or more terminals for wiring. Below is a description of the terminal configuration:

Pin/Terminal Description
Terminal 1 Input connection for the circuit
Terminal 2 Output connection for the circuit
Ground (optional) Grounding terminal for safety (if available)

Usage Instructions

How to Use the Stop Contact in a Circuit

  1. Identify the Circuit: Determine where the stop contact will be placed in the circuit. It is typically installed in series with the load or control circuit.
  2. Wiring:
    • Connect the input terminal (Terminal 1) to the power source or control signal.
    • Connect the output terminal (Terminal 2) to the load or downstream circuit.
    • If a grounding terminal is available, connect it to the system ground for safety.
  3. Testing: After installation, test the stop contact by activating it to ensure it interrupts the circuit as intended.

Important Considerations and Best Practices

  • Voltage and Current Ratings: Ensure the stop contact is rated for the voltage and current of your circuit.
  • Contact Configuration: Choose the appropriate configuration (NO or NC) based on your application.
  • Mechanical Durability: Regularly inspect the stop contact for wear and tear, especially in high-use environments.
  • Safety Compliance: Verify that the stop contact meets relevant safety standards (e.g., IEC, UL).

Example: Using a Stop Contact with an Arduino UNO

A stop contact can be used with an Arduino UNO to create a safety mechanism in a control system. Below is an example circuit and code:

Circuit Description

  • Connect one terminal of the stop contact to a digital input pin on the Arduino (e.g., pin 2).
  • Connect the other terminal to ground.
  • Use a pull-up resistor (10kΩ) to ensure the input pin reads HIGH when the stop contact is not pressed.

Arduino Code

// Define the pin connected to the stop contact
const int stopContactPin = 2;

void setup() {
  pinMode(stopContactPin, INPUT_PULLUP); // Set pin as input with pull-up resistor
  Serial.begin(9600); // Initialize serial communication
}

void loop() {
  int stopState = digitalRead(stopContactPin); // Read the state of the stop contact

  if (stopState == LOW) {
    // Stop contact is pressed (circuit interrupted)
    Serial.println("Stop contact activated! Halting operation.");
    // Add code here to stop machinery or take safety action
  } else {
    // Stop contact is not pressed
    Serial.println("System running normally.");
  }

  delay(500); // Delay for stability
}

Troubleshooting and FAQs

Common Issues and Solutions

  1. Stop Contact Does Not Interrupt the Circuit

    • Cause: Incorrect wiring or loose connections.
    • Solution: Verify the wiring and ensure all connections are secure.
  2. Stop Contact Fails to Reset

    • Cause: Mechanical wear or debris in the contact mechanism.
    • Solution: Inspect the stop contact for damage or obstructions and clean if necessary.
  3. Arduino Reads Incorrect State

    • Cause: Missing or incorrect pull-up resistor.
    • Solution: Ensure a pull-up resistor is connected to the input pin.
  4. Overheating or Damage

    • Cause: Exceeding voltage or current ratings.
    • Solution: Use a stop contact rated for the specific voltage and current of your circuit.

FAQs

Q: Can I use a stop contact in an AC circuit?
A: Yes, as long as the stop contact is rated for the voltage and current of the AC circuit.

Q: What is the difference between NO and NC configurations?
A: Normally Open (NO) contacts are open when inactive and close when activated. Normally Closed (NC) contacts are closed when inactive and open when activated.

Q: How often should I inspect a stop contact?
A: Regular inspections are recommended, especially in high-use or critical safety applications. Check for wear, debris, and proper operation at least once every six months.

Q: Can I use a stop contact for low-power circuits?
A: Yes, stop contacts can be used in low-power circuits as long as the voltage and current ratings are appropriate.