Skip to product information
1 of 4

Push Button

Push Button

SKU:AX22-0007

This AX22-sized module features an ALPS Alpine SKSTADE010 tactile push-button mounted squarely on a 22 × 22 mm PCB. The momentary, normally-open switch delivers crisp, 160 gf actuation with a satisfying “click,” rated for 50 mA @ 12 V and over a million cycles. An on-board pull-up resistor and a debounce circuit. Drop it into any AX22 backplane to add reliable user input for resets, mode selects, menu navigation, or game controls wherever precise, tactile feedback is essential.
Regular price $2.99
Regular price Sale price $2.99
Sale Sold out
View full details

Technical Details

- 22 mm × 22 mm square
- 4× ⌀2.7 mm Mounting Holes
- 160 gf actuation force
- ALPS Alpine SKSTADE010
- 0.25 mm travel
- 1.8 V, 3.3 V, 5.0 V
- Arduino IDE Compatible
- MicroPython Compatible
- MicroBlocks Compatible

Material Datasheet →

Pinout

Technical Resources

Push Button - (AX22-0007)
🖱️ Click & drag to rotate
#define BUTTON_PIN 14

void setup() {
  Serial.begin(9600);
  pinMode(BUTTON_PIN, INPUT);
}

void loop() {
  int buttonValue = digitalRead(BUTTON_PIN);

  Serial.print("Button Value: ");
  Serial.println(buttonValue);

  delay(10); 
}