summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/2x5keypad/2x5keypad.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/2x5keypad/2x5keypad.c')
-rw-r--r--keyboards/handwired/2x5keypad/2x5keypad.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/keyboards/handwired/2x5keypad/2x5keypad.c b/keyboards/handwired/2x5keypad/2x5keypad.c
new file mode 100644
index 0000000000..873c579a17
--- /dev/null
+++ b/keyboards/handwired/2x5keypad/2x5keypad.c
@@ -0,0 +1,25 @@
+#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);
+}