summaryrefslogtreecommitdiff
path: root/keyboards/synthandkeys/the_debit_card/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/synthandkeys/the_debit_card/keymaps/default/keymap.c')
-rw-r--r--keyboards/synthandkeys/the_debit_card/keymaps/default/keymap.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/synthandkeys/the_debit_card/keymaps/default/keymap.c b/keyboards/synthandkeys/the_debit_card/keymaps/default/keymap.c
new file mode 100644
index 0000000000..aa5468c45c
--- /dev/null
+++ b/keyboards/synthandkeys/the_debit_card/keymaps/default/keymap.c
@@ -0,0 +1,22 @@
+// Copyright 2022 Synth and Keys (@Synth-and-Keys)
+// SPDX-License-Identifier: GPL-2.0-or-later
+#include QMK_KEYBOARD_H
+
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ /*
+ * -------------
+ * | 1 | 2 | 3 |
+ * -------------
+ * | 4 | 5 | 6 |
+ * -----------------
+ * | 7 | 8 | 9 | 0 |
+ * -----------------
+
+ */
+ [0] = LAYOUT(
+ KC_P1, KC_P2, KC_P3,
+ KC_P4, KC_P5, KC_P6,
+ KC_P7, KC_P8, KC_P9, KC_P0
+ )
+}; \ No newline at end of file