summaryrefslogtreecommitdiff
path: root/keyboards/ianklug/grooveboard/keymaps
diff options
context:
space:
mode:
authorIan Klug <ian@ianklug.com>2021-07-14 00:04:14 -0400
committerGitHub <noreply@github.com>2021-07-13 21:04:14 -0700
commit6cdba3a43724f76076b8bf1f4d0809f53e7599d9 (patch)
tree2d40a7a1f4e1178c4612e96a6325a4f3c8f11e21 /keyboards/ianklug/grooveboard/keymaps
parent2fd45959555d1cf819da89da7eaf5cf071f003a3 (diff)
[Keyboard] Add ianklug grooveboard (#13536)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/ianklug/grooveboard/keymaps')
-rw-r--r--keyboards/ianklug/grooveboard/keymaps/default/keymap.c28
-rw-r--r--keyboards/ianklug/grooveboard/keymaps/default/readme.md1
-rw-r--r--keyboards/ianklug/grooveboard/keymaps/via/keymap.c37
-rw-r--r--keyboards/ianklug/grooveboard/keymaps/via/readme.md1
-rw-r--r--keyboards/ianklug/grooveboard/keymaps/via/rules.mk2
5 files changed, 69 insertions, 0 deletions
diff --git a/keyboards/ianklug/grooveboard/keymaps/default/keymap.c b/keyboards/ianklug/grooveboard/keymaps/default/keymap.c
new file mode 100644
index 0000000000..643d9f1d1b
--- /dev/null
+++ b/keyboards/ianklug/grooveboard/keymaps/default/keymap.c
@@ -0,0 +1,28 @@
+/* Copyright 2021 ianklug
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+#include QMK_KEYBOARD_H
+
+// Defines names for use in layer keycodes and the keymap
+enum layer_names {
+ _BASE
+};
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ /* Base */
+ [_BASE] = LAYOUT(
+ KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
+ )
+}; \ No newline at end of file
diff --git a/keyboards/ianklug/grooveboard/keymaps/default/readme.md b/keyboards/ianklug/grooveboard/keymaps/default/readme.md
new file mode 100644
index 0000000000..95ec856a52
--- /dev/null
+++ b/keyboards/ianklug/grooveboard/keymaps/default/readme.md
@@ -0,0 +1 @@
+# The default keymap for grooveboard
diff --git a/keyboards/ianklug/grooveboard/keymaps/via/keymap.c b/keyboards/ianklug/grooveboard/keymaps/via/keymap.c
new file mode 100644
index 0000000000..40546c1311
--- /dev/null
+++ b/keyboards/ianklug/grooveboard/keymaps/via/keymap.c
@@ -0,0 +1,37 @@
+/* Copyright 2021 ianklug
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+#include QMK_KEYBOARD_H
+
+// Defines names for use in layer keycodes and the keymap
+enum layer_names {
+ _BASE
+};
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ /* Base */
+ [_BASE] = LAYOUT(
+ KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
+ ),
+ [1] = LAYOUT(
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
+ ),
+ [2] = LAYOUT(
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
+ ),
+ [3] = LAYOUT(
+ KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
+ )
+};
diff --git a/keyboards/ianklug/grooveboard/keymaps/via/readme.md b/keyboards/ianklug/grooveboard/keymaps/via/readme.md
new file mode 100644
index 0000000000..0963f48e62
--- /dev/null
+++ b/keyboards/ianklug/grooveboard/keymaps/via/readme.md
@@ -0,0 +1 @@
+# The via keymap for grooveboard
diff --git a/keyboards/ianklug/grooveboard/keymaps/via/rules.mk b/keyboards/ianklug/grooveboard/keymaps/via/rules.mk
new file mode 100644
index 0000000000..36b7ba9cbc
--- /dev/null
+++ b/keyboards/ianklug/grooveboard/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
+VIA_ENABLE = yes
+LTO_ENABLE = yes