summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/2x5keypad/2x5keypad.c
diff options
context:
space:
mode:
authorlokher <lokher@gmail.com>2022-09-13 11:24:05 +0800
committerlokher <lokher@gmail.com>2022-09-13 11:24:05 +0800
commit9581289745736ce068a1040f44cec37a2ca8830d (patch)
tree24f644715a5fd6cc4d804d9604fb094307808b1b /keyboards/handwired/2x5keypad/2x5keypad.c
parentfe13cedf8c09fa34d5cec4e4c624738095176625 (diff)
Remove non-Keychron keyboards
Diffstat (limited to 'keyboards/handwired/2x5keypad/2x5keypad.c')
-rw-r--r--keyboards/handwired/2x5keypad/2x5keypad.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/keyboards/handwired/2x5keypad/2x5keypad.c b/keyboards/handwired/2x5keypad/2x5keypad.c
deleted file mode 100644
index 873c579a17..0000000000
--- a/keyboards/handwired/2x5keypad/2x5keypad.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include "2x5keypad.h"
-
-
-void matrix_init_kb(void)
-{
- matrix_init_user();
-
- setPinOutput(RED_LED);
- setPinOutput(BLUE_LED);
- setPinOutput(GREEN_LED);
-}
-
-
-
-void turn_off_leds(void)
-{
- writePinLow(RED_LED);
- writePinLow(BLUE_LED);
- writePinLow(GREEN_LED);
-}
-
-void turn_on_led(pin_t pin)
-{
- writePinHigh(pin);
-}