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

How to Use Micro Switch Hinge Roller new: Examples, Pinouts, and Specs

Image of Micro Switch Hinge Roller new
Cirkit Designer LogoDesign with Micro Switch Hinge Roller new in Cirkit Designer

Introduction

The Micro Switch Hinge Roller (V-156-1C25), manufactured by JANDECCN, is a precision-engineered switch designed for reliable and accurate switching operations. It features a hinge roller actuator, making it ideal for applications requiring mechanical actuation with minimal force. This micro switch is widely used in safety devices, industrial automation systems, vending machines, and limit-switching mechanisms.

Explore Projects Built with Micro Switch Hinge Roller new

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Dual Motor Control System with DPDT Switches and Planetary Gearbox Motors
Image of LEAD SCREW : A project utilizing Micro Switch Hinge Roller new in a practical application
This circuit features two DPDT switches that control the direction of two MRB Planetary gearbox motors. The switches are connected to a connector, allowing for external control inputs to change the motor directions.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino-Controlled Input Panel with Momentary and Toggle Switches
Image of button box group 2: A project utilizing Micro Switch Hinge Roller new in a practical application
This circuit features an Arduino Micro Pro microcontroller connected to multiple input devices including momentary switches and rotary encoders, with toggle switches likely used for controlling power or signal paths. The microcontroller is set up to monitor and respond to the state changes of these input devices, enabling interactive control for an application.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Motor Control System with Toggle and Limit Switches
Image of Simple Lift: A project utilizing Micro Switch Hinge Roller new in a practical application
This circuit controls a hobby gear motor using two toggle switches, a rocker switch, and two limit switches. The motor's direction is controlled by the toggle switches, while the limit switches and rocker switch provide additional control and safety features. Power is supplied by a 18650 battery in a holder.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino-Controlled Input Interface with Momentary Switches and Rotary Encoders
Image of  button box: A project utilizing Micro Switch Hinge Roller new in a practical application
This circuit includes an array of momentary switches (both red and black), toggle switches, and rotary encoders, all interfaced with an Arduino Micro Pro microcontroller. The momentary switches and toggle switches are likely used for input commands, while the rotary encoders provide both rotational position input and additional switch inputs. The microcontroller's pins are connected to the signal pins of these input devices, suggesting that it is configured to read their states and react accordingly, although without embedded code, the specific behavior cannot be determined.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Micro Switch Hinge Roller new

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 LEAD SCREW : A project utilizing Micro Switch Hinge Roller new in a practical application
Dual Motor Control System with DPDT Switches and Planetary Gearbox Motors
This circuit features two DPDT switches that control the direction of two MRB Planetary gearbox motors. The switches are connected to a connector, allowing for external control inputs to change the motor directions.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of button box group 2: A project utilizing Micro Switch Hinge Roller new in a practical application
Arduino-Controlled Input Panel with Momentary and Toggle Switches
This circuit features an Arduino Micro Pro microcontroller connected to multiple input devices including momentary switches and rotary encoders, with toggle switches likely used for controlling power or signal paths. The microcontroller is set up to monitor and respond to the state changes of these input devices, enabling interactive control for an application.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Simple Lift: A project utilizing Micro Switch Hinge Roller new in a practical application
Battery-Powered Motor Control System with Toggle and Limit Switches
This circuit controls a hobby gear motor using two toggle switches, a rocker switch, and two limit switches. The motor's direction is controlled by the toggle switches, while the limit switches and rocker switch provide additional control and safety features. Power is supplied by a 18650 battery in a holder.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of  button box: A project utilizing Micro Switch Hinge Roller new in a practical application
Arduino-Controlled Input Interface with Momentary Switches and Rotary Encoders
This circuit includes an array of momentary switches (both red and black), toggle switches, and rotary encoders, all interfaced with an Arduino Micro Pro microcontroller. The momentary switches and toggle switches are likely used for input commands, while the rotary encoders provide both rotational position input and additional switch inputs. The microcontroller's pins are connected to the signal pins of these input devices, suggesting that it is configured to read their states and react accordingly, although without embedded code, the specific behavior cannot be determined.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications

  • Safety Devices: Emergency stop mechanisms and interlocks.
  • Industrial Automation: Position detection and control in machinery.
  • Vending Machines: Detecting door or lever positions.
  • Robotics: Limit switches for robotic arms and moving parts.
  • Home Appliances: Used in washing machines, microwaves, and other devices.

Technical Specifications

Key Technical Details

Parameter Specification
Manufacturer JANDECCN
Part Number V-156-1C25
Actuator Type Hinge Roller
Operating Voltage 250V AC / 125V AC
Rated Current 15A
Contact Configuration SPDT (Single Pole Double Throw)
Mechanical Life 10,000,000 cycles
Electrical Life 50,000 cycles
Operating Force (OF) 400 gf (gram-force)
Terminal Type Quick Connect
Operating Temperature -25°C to +85°C
Dimensions 27.8mm x 10.3mm x 15.9mm

Pin Configuration and Descriptions

The V-156-1C25 micro switch has three terminals for SPDT operation:

Pin Name Description
COM Common terminal. This is the main input terminal for the switch.
NO Normally Open terminal. Connects to COM when the actuator is pressed.
NC Normally Closed terminal. Connects to COM when the actuator is not pressed.

Usage Instructions

How to Use the Micro Switch in a Circuit

  1. Identify the Terminals: Locate the COM, NO, and NC terminals on the switch.
  2. Connect the Circuit:
    • For a normally open (NO) configuration, connect the load between COM and NO.
    • For a normally closed (NC) configuration, connect the load between COM and NC.
  3. Mount the Switch: Secure the switch in place using screws or a mounting bracket. Ensure the hinge roller aligns with the actuating mechanism.
  4. Test the Actuation: Manually press the hinge roller to verify the switching action.

Important Considerations

  • Voltage and Current Ratings: Ensure the connected load does not exceed the rated voltage (250V AC) or current (15A).
  • Mechanical Alignment: Properly align the hinge roller with the actuating mechanism to avoid excessive force or misalignment.
  • Debouncing: If used in digital circuits, consider implementing debouncing to avoid false triggering.
  • Environmental Conditions: Avoid exposing the switch to extreme temperatures or moisture beyond its rated limits.

Example: Connecting to an Arduino UNO

The V-156-1C25 can be used as a limit switch in Arduino projects. Below is an example of how to connect and use it:

Circuit Setup

  • Connect the COM terminal to the ground (GND) pin of the Arduino.
  • Connect the NO terminal to a digital input pin (e.g., pin 2) on the Arduino.
  • Use a pull-up resistor (10kΩ) between the digital input pin and the 5V pin of the Arduino.

Arduino Code

// Define the pin connected to the micro switch
const int switchPin = 2;

// Variable to store the switch state
int switchState = 0;

void setup() {
  // Set the switch pin as input
  pinMode(switchPin, INPUT);
  
  // Enable the internal pull-up resistor
  digitalWrite(switchPin, HIGH);
  
  // Initialize serial communication for debugging
  Serial.begin(9600);
}

void loop() {
  // Read the state of the switch
  switchState = digitalRead(switchPin);
  
  // Print the switch state to the Serial Monitor
  if (switchState == LOW) {
    // Switch is pressed
    Serial.println("Switch Pressed");
  } else {
    // Switch is not pressed
    Serial.println("Switch Released");
  }
  
  // Add a small delay to avoid spamming the Serial Monitor
  delay(100);
}

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
Switch does not actuate properly Misalignment of the hinge roller Realign the roller with the actuating mechanism.
No electrical connection Loose or incorrect wiring Verify and secure all connections.
Switch fails to operate after use Exceeded electrical or mechanical life Replace the switch with a new one.
False triggering in digital circuits Electrical noise or lack of debouncing Implement hardware or software debouncing.

FAQs

  1. Can this switch handle DC loads?

    • Yes, but ensure the DC voltage and current do not exceed the rated limits.
  2. What is the purpose of the hinge roller?

    • The hinge roller allows for smoother actuation and reduces wear when used with moving parts.
  3. Can this switch be used outdoors?

    • The switch is not waterproof. Use a protective enclosure if deploying it in outdoor environments.
  4. How do I know if the switch is faulty?

    • Test the continuity between terminals using a multimeter. If there is no continuity when actuated, the switch may be faulty.

This concludes the documentation for the Micro Switch Hinge Roller (V-156-1C25). For further assistance, refer to the manufacturer's datasheet or contact JANDECCN support.