

The Arcade Button (Red) is a large, durable push button designed for high-frequency use in arcade machines and similar applications. Its bright red color ensures easy visibility, while its tactile response provides satisfying feedback during operation. This button is commonly used in gaming consoles, interactive kiosks, DIY electronics projects, and control panels. Its robust design makes it ideal for projects requiring repeated user interaction.








The Arcade Button (Red) typically has two terminals for connection:
| Pin | Label | Description |
|---|---|---|
| 1 | NO (Normally Open) | Connects to the circuit when the button is pressed, completing the circuit. |
| 2 | COM (Common) | Common terminal for the button, typically connected to ground or power source. |
Below is an example of how to connect and use the Arcade Button with an Arduino UNO:
// Arcade Button Example with Arduino UNO
// This code reads the state of the button and turns on an LED when pressed.
const int buttonPin = 2; // Pin connected to the NO terminal of the button
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(buttonPin, INPUT_PULLUP); // Set button pin as input with internal pull-up resistor
pinMode(ledPin, OUTPUT); // Set LED pin as output
}
void loop() {
int buttonState = digitalRead(buttonPin); // Read the button state
if (buttonState == LOW) { // Button is pressed (LOW due to pull-up resistor)
digitalWrite(ledPin, HIGH); // Turn on the LED
} else {
digitalWrite(ledPin, LOW); // Turn off the LED
}
}
Note: The
INPUT_PULLUPmode is used to simplify the circuit by eliminating the need for an external pull-up resistor.
Button Not Responding:
Button Produces Erratic Behavior:
Button Feels Stiff or Stuck:
Button Works Intermittently:
Can I use the Arcade Button with a Raspberry Pi? Yes, the Arcade Button can be connected to a Raspberry Pi GPIO pin. Use a pull-up or pull-down resistor as needed.
Is the button waterproof? No, the Arcade Button is not waterproof. Avoid using it in environments with high moisture or exposure to liquids.
Can I use this button for high-power applications? The button is rated for up to 5A. For higher currents, use a relay or transistor to handle the load.
What is the lifespan of the button? The button is rated for over 1,000,000 presses, making it highly durable for most applications.
By following this documentation, you can effectively integrate the Arcade Button (Red) into your projects and troubleshoot any issues that arise.