summaryrefslogtreecommitdiff
path: root/keyboards/synthandkeys/the_debit_card/keymaps/default/keymap.c
diff options
context:
space:
mode:
authorSynth and Keys <117340582+Synth-and-Keys@users.noreply.github.com>2022-11-10 13:36:55 -0700
committerGitHub <noreply@github.com>2022-11-10 20:36:55 +0000
commit6562c5a940fc469413c0cc7e9c6b19a18ca4988e (patch)
tree446c25529979f60c9f2908cf6ddfcdcd83415ebf /keyboards/synthandkeys/the_debit_card/keymaps/default/keymap.c
parent84920ff5f4c1dfb3c84ca175899f81804be30396 (diff)
Adding Synth and Keys' Debit Card (#18995)
* Adding Synth and Keys' Debit Card Initial Commit * Add files via upload * Delete config.h * Update keyboards/synthandkeys/the_debit_card/info.json Co-authored-by: Joel Challis <git@zvecr.com>
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