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

How to Use Arcade Button (white): Examples, Pinouts, and Specs

Image of Arcade Button (white)
Cirkit Designer LogoDesign with Arcade Button (white) in Cirkit Designer

Introduction

The Arcade Button (White) is a push-button switch designed for use in arcade machines, gaming consoles, and DIY electronics projects. It features a durable plastic housing, a bright white color for enhanced visibility, and a tactile response for reliable operation. This button is ideal for applications requiring frequent user interaction, such as gaming controls, interactive kiosks, and custom control panels.

Explore Projects Built with Arcade Button (white)

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Arduino UNO Controlled RGB LED Strip with Interactive Button
Image of Simon Circuit: A project utilizing Arcade Button (white) in a practical application
This circuit features an Arduino UNO connected to a WS2812 RGB LED strip, controlled via digital pin D8. An arcade button is interfaced with the Arduino through a resistor and digital pin D3, likely for user input to control the LED strip. Power is supplied through a 2.1mm DC barrel jack, with an electrolytic capacitor for voltage smoothing, and the ground connections are shared among the components.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino Mega 2560-Based Interactive Game with RGB LEDs, LCD Display, and DFPlayer Audio
Image of Game: A project utilizing Arcade Button (white) in a practical application
This circuit is a game controller that uses an Arduino Mega 2560 to manage inputs from multiple arcade buttons, control RGB LEDs, display messages on an LCD, and play audio through a DFPlayer module. The system announces the winner based on button presses, lights up the corresponding RGB LED, and displays the winner's name on the LCD.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino-Based Interactive LED Game with I2C LCD Display
Image of test2: A project utilizing Arcade Button (white) in a practical application
This circuit is a simple interactive game system using an Arduino Uno, two WS2812B LEDs, two pushbuttons, and two 16x2 I2C LCDs. The Arduino controls the LEDs and displays game information on the LCDs, while the pushbuttons are used to interact with the game, which involves pressing the correct button based on the LED color displayed.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Based Interactive LED Game with WS2812B LEDs and OLED Displays
Image of Test: A project utilizing Arcade Button (white) in a practical application
This circuit is a game system controlled by an ESP32 microcontroller, featuring 20 WS2812B LEDs, 10 arcade buttons, and two 128x64 OLED displays. The LEDs are used for visual feedback, the buttons for user input, and the displays for showing game information such as score and time. The system runs a game where players interact with the LEDs and buttons, with the ESP32 managing the game logic and user interface.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Arcade Button (white)

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 Simon Circuit: A project utilizing Arcade Button (white) in a practical application
Arduino UNO Controlled RGB LED Strip with Interactive Button
This circuit features an Arduino UNO connected to a WS2812 RGB LED strip, controlled via digital pin D8. An arcade button is interfaced with the Arduino through a resistor and digital pin D3, likely for user input to control the LED strip. Power is supplied through a 2.1mm DC barrel jack, with an electrolytic capacitor for voltage smoothing, and the ground connections are shared among the components.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Game: A project utilizing Arcade Button (white) in a practical application
Arduino Mega 2560-Based Interactive Game with RGB LEDs, LCD Display, and DFPlayer Audio
This circuit is a game controller that uses an Arduino Mega 2560 to manage inputs from multiple arcade buttons, control RGB LEDs, display messages on an LCD, and play audio through a DFPlayer module. The system announces the winner based on button presses, lights up the corresponding RGB LED, and displays the winner's name on the LCD.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of test2: A project utilizing Arcade Button (white) in a practical application
Arduino-Based Interactive LED Game with I2C LCD Display
This circuit is a simple interactive game system using an Arduino Uno, two WS2812B LEDs, two pushbuttons, and two 16x2 I2C LCDs. The Arduino controls the LEDs and displays game information on the LCDs, while the pushbuttons are used to interact with the game, which involves pressing the correct button based on the LED color displayed.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Test: A project utilizing Arcade Button (white) in a practical application
ESP32-Based Interactive LED Game with WS2812B LEDs and OLED Displays
This circuit is a game system controlled by an ESP32 microcontroller, featuring 20 WS2812B LEDs, 10 arcade buttons, and two 128x64 OLED displays. The LEDs are used for visual feedback, the buttons for user input, and the displays for showing game information such as score and time. The system runs a game where players interact with the LEDs and buttons, with the ESP32 managing the game logic and user interface.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications:

  • Arcade gaming machines
  • DIY gaming controllers
  • Interactive kiosks and vending machines
  • Custom control panels for electronics projects

Technical Specifications

The Arcade Button (White) is a simple, robust component with the following specifications:

Parameter Value
Button Type Momentary push-button
Housing Material Durable plastic
Color White
Operating Voltage 5V to 12V (typical)
Contact Rating 1A at 125V AC / 2A at 48V DC
Mounting Hole Diameter 28mm
Actuation Force ~150g
Terminal Type Quick-connect spade terminals
Dimensions 33mm (diameter) x 50mm (height)

Pin Configuration and Descriptions

The Arcade Button (White) typically has two terminals for electrical connections:

Pin Description
NO Normally Open terminal (connects to circuit when pressed)
COM Common terminal (connects to ground or power, depending on circuit design)

Usage Instructions

How to Use the Arcade Button in a Circuit

  1. Mounting the Button:

    • Drill a 28mm hole in your panel or enclosure.
    • Insert the button into the hole and secure it using the included mounting nut.
  2. Wiring the Button:

    • Connect the COM terminal to the ground or power rail of your circuit.
    • Connect the NO terminal to the input pin of your microcontroller or the desired circuit path.
    • Use quick-connect spade connectors for secure and reliable connections.
  3. Testing the Button:

    • Apply power to your circuit.
    • Press the button to ensure it completes the circuit and triggers the desired action.

Important Considerations and Best Practices

  • Debouncing: Mechanical buttons like the Arcade Button may produce multiple signals (bounces) when pressed. Use a hardware or software debounce mechanism to ensure clean signal transitions.
  • Voltage and Current Ratings: Ensure the button is used within its rated voltage and current limits to avoid damage.
  • Secure Mounting: Properly secure the button to prevent it from loosening during use.
  • Connection Polarity: Double-check the wiring to avoid short circuits or incorrect operation.

Example: Connecting to an Arduino UNO

The Arcade Button can be easily interfaced with an Arduino UNO for simple input detection. Below is an example circuit and code:

Circuit:

  • Connect the COM terminal of the button to the Arduino's GND pin.
  • Connect the NO terminal of the button to the Arduino's Digital Pin 2.
  • Use a 10kΩ pull-down resistor between Digital Pin 2 and GND to ensure a stable LOW state when the button is not pressed.

Code:

// 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 button's NO terminal
const int ledPin = 13;    // Pin connected to the onboard LED

void setup() {
  pinMode(buttonPin, INPUT);  // Set button pin as input
  pinMode(ledPin, OUTPUT);   // Set LED pin as output
  digitalWrite(ledPin, LOW); // Ensure LED is off initially
}

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);
  }
}

Troubleshooting and FAQs

Common Issues and Solutions

  1. Button Not Responding:

    • Cause: Loose or incorrect wiring.
    • Solution: Verify all connections, ensuring the terminals are securely connected.
  2. Button Produces Erratic Behavior:

    • Cause: Signal bouncing due to mechanical contacts.
    • Solution: Implement a debounce circuit or software debounce logic.
  3. Button Feels Stiff or Stuck:

    • Cause: Dirt or debris inside the button mechanism.
    • Solution: Clean the button with compressed air or a soft brush.
  4. Button Does Not Fit in Panel:

    • Cause: Incorrect hole size.
    • Solution: Ensure the mounting hole is exactly 28mm in diameter.

FAQs

Q: Can I use this button with a Raspberry Pi?
A: Yes, the Arcade Button can be used with a Raspberry Pi. Connect the button to a GPIO pin and use a pull-up or pull-down resistor as needed.

Q: Is the button waterproof?
A: No, the Arcade Button 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, the button is rated for low-power applications (1A at 125V AC or 2A at 48V DC). For high-power circuits, use a relay or transistor to handle the load.

Q: Does the button come with a built-in LED?
A: No, this specific Arcade Button (White) does not include an LED. However, illuminated versions are available separately.