

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.








| 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 |
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. |
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:
// 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);
}
| 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. |
Can this switch handle DC loads?
What is the purpose of the hinge roller?
Can this switch be used outdoors?
How do I know if the switch is 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.