Axiometa
Tactile Led Button
Tactile Led Button
SKU:
Out of stock
Add a clicky button with built-in LED feedback to your projects. This tactile switch module features a large 12mm button with a crisp mechanical feel, hardware debouncing for clean signal readings, and an integrated white LED for visual confirmation. Perfect for user interfaces, control panels, or any application where you need reliable button input with illumination. The onboard RC filter eliminates bounce, so you get clean press detection without extra code. The LED can be controlled independently, letting you indicate status, provide feedback, or create attention-grabbing effects. The button comes in different cap colors to match your project's aesthetic, while the white LED stays consistent across all variants.
Couldn't load pickup availability

Technical Details
Pinout
Arduino Example Snippet
#define BUTTON_PIN 14
#define LED_PIN 41
void setup() {
Serial.begin(9600);
pinMode(BUTTON_PIN, INPUT);
pinMode(LED_PIN, OUTPUT);
}
void loop() {
int buttonValue = digitalRead(BUTTON_PIN);
Serial.print("Button Value: ");
Serial.println(buttonValue);
if (buttonValue == LOW) {
digitalWrite(LED_PIN, HIGH);
} else {
digitalWrite(LED_PIN, LOW);
}
delay(10);
}