summaryrefslogtreecommitdiffstats
path: root/keyboards/laptreus/keymaps/debug/keymap.c
diff options
context:
space:
mode:
authorChuck Lauer Vose <vosechu@gmail.com>2019-02-06 23:41:17 +0100
committerDrashna Jaelre <drashna@live.com>2019-02-06 23:41:17 +0100
commita3104a71105e7743c778c47617dce0468bf8dc1f (patch)
treee98ae28920f033b26dfddbd6b5d9e5366c40c2b7 /keyboards/laptreus/keymaps/debug/keymap.c
parent35f6919673c57a9fea9305a001c0069e8bbc2844 (diff)
downloadqmk_firmware-a3104a71105e7743c778c47617dce0468bf8dc1f.tar.gz
qmk_firmware-a3104a71105e7743c778c47617dce0468bf8dc1f.tar.xz
[Keyboard] Initial commit of Laptreus Keyboard (#4967)
* Add userspace files for vosechu * Code review corrections * Few more code review corrections * Initial add of Laptreus code * Initial add of Laptreus code * Adding last punctuation to default * Add some debug suggestions to the debug readme * Fixes for PR feedback * Fixing capitalization of readme files * update auto detect connection logic
Diffstat (limited to 'keyboards/laptreus/keymaps/debug/keymap.c')
-rw-r--r--keyboards/laptreus/keymaps/debug/keymap.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/keyboards/laptreus/keymaps/debug/keymap.c b/keyboards/laptreus/keymaps/debug/keymap.c
new file mode 100644
index 000000000..8ffb06fa2
--- /dev/null
+++ b/keyboards/laptreus/keymaps/debug/keymap.c
@@ -0,0 +1,11 @@
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ /* ============================= DEBUG LAYER ============================= */
+ [0] = LAYOUT(
+ KC_A, KC_1, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L,
+ KC_A, KC_2, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L,
+ KC_A, KC_3, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L,
+ KC_A, KC_4, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L
+ )
+};