

The Arcade Button (Blue) is a push-button switch designed for user interaction in various electronic projects. It is commonly used in arcade machines, gaming consoles, and DIY electronics due to its durable construction, tactile feedback, and vibrant blue color for easy identification. This button is ideal for applications requiring frequent pressing and reliable performance.








The Arcade Button (Blue) is a simple, momentary push-button switch. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Button Type | Momentary push-button |
| Color | Blue |
| Operating Voltage | 3.3V to 12V (logic level) |
| Maximum Current | 1A |
| Contact Resistance | ≤ 50 mΩ |
| Insulation Resistance | ≥ 100 MΩ |
| Actuation Force | ~150g |
| Button Diameter | 30mm |
| Mounting Hole Size | 28mm |
| Terminal Type | Solder or quick-connect tabs |
| Lifespan | ≥ 1,000,000 cycles |
The Arcade Button (Blue) typically has two terminals for connection:
| Pin | Description |
|---|---|
| NO | Normally Open terminal (connect to input) |
| COM | Common terminal (connect to ground) |
When the button is pressed, the circuit between the NO and COM terminals is closed, allowing current to flow.
Wiring the Button:
Pull-Down Resistor:
Power Supply:
Below is an example of how to connect and use the Arcade Button (Blue) with an Arduino UNO:
// Arcade Button Example with Arduino UNO
// This code reads the button state and turns on an LED when the button is pressed.
const int buttonPin = 2; // Pin connected to the NO terminal of the button
const int ledPin = 13; // Built-in LED on Arduino UNO
void setup() {
pinMode(buttonPin, INPUT); // Set button pin as input
pinMode(ledPin, OUTPUT); // Set LED pin as output
}
void loop() {
int buttonState = digitalRead(buttonPin); // Read the button state
if (buttonState == HIGH) {
// If button is pressed, turn on the LED
digitalWrite(ledPin, HIGH);
} else {
// If button is not pressed, turn off the LED
digitalWrite(ledPin, LOW);
}
}
Button Not Responding:
Button Stuck or Hard to Press:
Unstable Signal:
Button Works Intermittently:
Q: Can I use this button with a Raspberry Pi?
A: Yes, the Arcade Button (Blue) can be used with a Raspberry Pi. Connect the NO terminal to a GPIO pin and the COM terminal to ground. Use a pull-down resistor for stable input.
Q: Is the button waterproof?
A: No, the Arcade Button (Blue) is not waterproof. Avoid using it in environments with high moisture or water exposure.
Q: Can I use this button for high-power applications?
A: No, this button is designed for low-power logic-level circuits. For high-power applications, use a relay or transistor to handle the load.
Q: How do I mount the button securely?
A: Drill a 28mm hole in your panel or enclosure, insert the button, and secure it using the included mounting nut.
By following this documentation, you can effectively integrate the Arcade Button (Blue) into your projects for reliable and responsive user interaction.