The Switch Push On Off 16mm is a compact, durable push-button switch designed for toggling between on and off states. With a 16mm mounting diameter, this switch is ideal for applications requiring a simple and reliable user interface. Manufactured by Glodok Supermarket, this switch is widely used in electronic devices, control panels, DIY projects, and industrial equipment.
Below are the key technical details for the Switch Push On Off 16mm:
Parameter | Value |
---|---|
Manufacturer | Glodok Supermarket |
Part ID | Not specified |
Switch Type | Push-button, latching (on/off) |
Mounting Hole Diameter | 16mm |
Rated Voltage | 12V DC / 250V AC |
Rated Current | 3A |
Contact Configuration | SPST (Single Pole Single Throw) |
Material | Metal housing, plastic actuator |
Operating Temperature | -20°C to +55°C |
Mechanical Life | 50,000 cycles |
Terminal Type | Solder lugs |
The Switch Push On Off 16mm has two terminals for connection:
Pin | Description |
---|---|
Pin 1 | Input terminal (connect to power) |
Pin 2 | Output terminal (connect to load) |
The switch can be used as an input device for an Arduino UNO. Below is an example circuit and code:
// Example code for using the Switch Push On Off 16mm with Arduino UNO
const int switchPin = 2; // Pin connected to the switch
int switchState = 0; // Variable to store the switch state
void setup() {
pinMode(switchPin, INPUT_PULLUP); // Set the pin as input with internal pull-up
Serial.begin(9600); // Initialize serial communication
}
void loop() {
switchState = digitalRead(switchPin); // Read the state of the switch
if (switchState == LOW) {
// Switch is pressed (active low)
Serial.println("Switch is ON");
} else {
// Switch is not pressed
Serial.println("Switch is OFF");
}
delay(200); // Small delay to avoid spamming the serial monitor
}
Switch Not Working:
Intermittent Operation:
Switch Feels Stuck:
No Response in Arduino Circuit:
Q: Can this switch handle AC loads?
A: Yes, the switch is rated for up to 250V AC at 3A, making it suitable for low-power AC applications.
Q: Is the switch waterproof?
A: No, this switch is not waterproof. Avoid using it in environments with high moisture or water exposure.
Q: Can I use this switch for momentary operation?
A: No, this is a latching switch, meaning it toggles between on and off states. For momentary operation, consider using a momentary push-button switch.
Q: How do I clean the switch?
A: Use a dry cloth or compressed air to remove dust and debris. Avoid using liquids or abrasive materials.
By following this documentation, you can effectively integrate the Switch Push On Off 16mm into your projects and troubleshoot any issues that arise.