Stufin
Home Quick Cart Profile

Microswitch KW10-Z1P Limit Switch 1A 125V AC

Buy Now on Stufin

Operating Voltage

125V AC

Current Rating

1A

Contact Configuration

Single-pole double-throw (SPDT)

Operating Temperature

-20C to 80C

Storage Temperature

-40C to 100C

Vibration Resistance

10G, 10-55Hz

Shock Resistance

15G, 11ms

Insulation Resistance

100M at 500V DC

Dielectric Strength

1500V AC, 1 minute

Conclusion

The Microswitch KW10-Z1P Limit Switch 1A 125V AC is a reliable and versatile component that offers high accuracy and precision in detecting physical changes. Its compact design, rugged construction, and high reliability make it an ideal choice for a wide range of IoT applications.

Pin Configuration

  • Microswitch KW10-Z1P Limit Switch 1A 125V AC Pinout Explanation
  • The Microswitch KW10-Z1P Limit Switch 1A 125V AC is a high-quality microswitch designed for various applications, including industrial automation, robotics, and IoT projects. This documentation provides a detailed explanation of the pinout and connection structure for the Microswitch KW10-Z1P.
  • Pinout Structure:
  • The Microswitch KW10-Z1P has a total of 3 pins, labeled as follows:
  • Pin 1: Common (COM)
  • Function: Common terminal for the switch
  • Description: This pin is connected to the movable contact of the switch and is typically connected to the power supply or the input signal.
  • Pin 2: Normally Open (NO)
  • Function: Normally Open contact of the switch
  • Description: This pin is connected to the fixed contact of the switch and is normally open (i.e., disconnected) when the switch is in its normal position. When the switch is actuated, the NO contact becomes closed, allowing the circuit to be completed.
  • Pin 3: Normally Closed (NC)
  • Function: Normally Closed contact of the switch
  • Description: This pin is connected to the fixed contact of the switch and is normally closed (i.e., connected) when the switch is in its normal position. When the switch is actuated, the NC contact becomes open, breaking the circuit.
  • Connection Structure:
  • To connect the Microswitch KW10-Z1P, follow these steps:
  • 1. Power Supply Connection:
  • Connect the power supply (125V AC) to Pin 1 (COM).
  • 2. Output Signal Connection:
  • Connect the output signal wire to Pin 2 (NO) for a normally open configuration or Pin 3 (NC) for a normally closed configuration.
  • 3. Load Connection:
  • Connect the load (e.g., LED, relay, or other device) to the output signal wire.
  • 4. Grounding:
  • Ensure proper grounding of the circuit to prevent electrical shock and ensure safe operation.
  • Important Notes:
  • The Microswitch KW10-Z1P is designed for 1A 125V AC operation. Do not exceed the rated specifications to prevent damage or electrical shock.
  • Use appropriate wire sizes and insulation to ensure safe and reliable connections.
  • Follow proper safety guidelines when working with electrical circuits.
  • By following this documentation, you should be able to connect the Microswitch KW10-Z1P correctly and safely, ensuring reliable operation in your IoT or automation project.

Code Examples

Microswitch KW10-Z1P Limit Switch 1A 125V AC Documentation
Overview
The Microswitch KW10-Z1P Limit Switch 1A 125V AC is a type of electrical switch that is commonly used in industrial automation, robotics, and IoT applications. It is a compact, rugged, and reliable limit switch that can be used to detect the presence or absence of an object, or to trigger an action when a specific condition is met.
Technical Specifications
Rating: 1A 125V AC
 Type: Limit Switch
 Contact Type: SPDT (Single Pole Double Throw)
 Actuator Type: Roller Plunger
 Operating Force: 1.5N
 Pretravel: 0.5mm
 Overtravel: 1.5mm
 Electrical Life: 100,000 cycles
 Operating Temperature: -25C to 85C
Pinout
The Microswitch KW10-Z1P has three pins:
Pin 1: Common (C)
 Pin 2: Normally Open (NO)
 Pin 3: Normally Closed (NC)
Code Examples
Here are some code examples that demonstrate how to use the Microswitch KW10-Z1P Limit Switch in different contexts:
Example 1: Simple On/Off Control using Arduino
In this example, we'll use the Microswitch KW10-Z1P to control an LED light using an Arduino board.
```c++
const int ledPin = 13;  // Choose a pin for the LED
const int switchPin = 2;  // Choose a pin for the Microswitch
void setup() {
  pinMode(ledPin, OUTPUT);
  pinMode(switchPin, INPUT);
}
void loop() {
  int switchState = digitalRead(switchPin);
  if (switchState == HIGH) {
    digitalWrite(ledPin, HIGH);  // Turn on the LED
  } else {
    digitalWrite(ledPin, LOW);  // Turn off the LED
  }
  delay(50);
}
```
Example 2: Object Detection using Raspberry Pi and Python
In this example, we'll use the Microswitch KW10-Z1P to detect the presence of an object using a Raspberry Pi and Python.
```python
import RPi.GPIO as GPIO
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Set up the Microswitch pin as an input
switch_pin = 17
GPIO.setup(switch_pin, GPIO.IN, pull_up_down=GPIO.PUD_UP)
while True:
    if GPIO.input(switch_pin) == GPIO.LOW:
        print("Object detected!")
    else:
        print("No object detected.")
    time.sleep(0.1)
```
Example 3: Home Automation using ESP32 and MicroPython
In this example, we'll use the Microswitch KW10-Z1P to control a relay module using an ESP32 board and MicroPython.
```python
import machine
import utime
# Set up the Microswitch pin as an input
switch_pin = machine.Pin(32, machine.Pin.IN)
# Set up the relay module pin as an output
relay_pin = machine.Pin(33, machine.Pin.OUT)
while True:
    if switch_pin.value() == 0:
        relay_pin.value(1)  # Turn on the relay
    else:
        relay_pin.value(0)  # Turn off the relay
    utime.sleep(0.1)
```
These code examples demonstrate how to use the Microswitch KW10-Z1P Limit Switch in various contexts, including simple on/off control, object detection, and home automation.