summaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorArkaprobho Das <89677542+arko9699@users.noreply.github.com>2024-09-08 02:42:28 +0530
committerGitHub <noreply@github.com>2024-09-07 15:12:28 -0600
commit608fb51485d96dd56bd074d75cee7b7cc798e388 (patch)
treeb08ab4922949c6076d0956275e6632fd930498fa /keyboards
parent71d25b36f37ee00de82456d25f342295f84d4c8a (diff)
Added vial support for For_Science (#769)
* Added vial support for For_Science * Update rules.mk * Disabled QMK features to keep firmware size in check for AVR * moved qmk feature flags from keyboard.json to vial/rules.mk Moved QMK feature disables to vial/rules.mk to maintain compatibility with upstream QMK. * Delete rules.mk
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/for_science/keymaps/vial/config.h7
-rw-r--r--keyboards/for_science/keymaps/vial/keymap.c113
-rw-r--r--keyboards/for_science/keymaps/vial/rules.mk5
-rw-r--r--keyboards/for_science/keymaps/vial/vial.json15
4 files changed, 140 insertions, 0 deletions
diff --git a/keyboards/for_science/keymaps/vial/config.h b/keyboards/for_science/keymaps/vial/config.h
new file mode 100644
index 0000000000..2dca0d3c3c
--- /dev/null
+++ b/keyboards/for_science/keymaps/vial/config.h
@@ -0,0 +1,7 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#pragma once
+
+#define VIAL_KEYBOARD_UID {0x89, 0xFB, 0xBB, 0x3C, 0xA4, 0x75, 0x46, 0x11}
+#define VIAL_UNLOCK_COMBO_ROWS { 0,0 }
+#define VIAL_UNLOCK_COMBO_COLS { 0,1 }
diff --git a/keyboards/for_science/keymaps/vial/keymap.c b/keyboards/for_science/keymaps/vial/keymap.c
new file mode 100644
index 0000000000..ef743a387a
--- /dev/null
+++ b/keyboards/for_science/keymaps/vial/keymap.c
@@ -0,0 +1,113 @@
+/* Copyright 2017 Paul James (paul@peej.co.uk)
+ *
+ * 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,
+ _LAYER,
+ _MOD_LAYER,
+ _FUNCT
+};
+
+#define SFT_A SFT_T(KC_A)
+#define SFT_F1 SFT_T(KC_F1)
+#define SFT_Z SFT_T(KC_Z)
+#define SFT_F6 SFT_T(KC_F6)
+#define LAY_X LT(_LAYER, KC_X)
+#define LAY_F7 LT(_LAYER, KC_F7)
+#define LAY_SLS LT(_LAYER, KC_SLSH)
+#define LAY_SPC LT(_LAYER, KC_SPACE)
+
+#define LOCK LGUI(KC_L)
+#define MAC_LCK LGUI(LCTL(KC_Q))
+
+#define LAYER MO(_LAYER)
+#define FUNCT MO(_FUNCT)
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+/*
+ * ,---------------------------------------- ----------------------------------------.
+ * | Tab | Esc | ( | { | [ | | ] | } | ) | ' | BkSp |
+ * | ~ | ` | < | _ | - | | + | = | > | \ | Del |
+ * |-------+-------+-------+-------+-------+ |-------+-------+-------+-------+-------|
+ * | Q | W | E | R | T | | Y | U | I | O | P |
+ * | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 |
+ * |-------+-------+-------+-------+-------+ |-------+-------+-------+-------+-------|
+ * | A | S | D | F | G | | H | J | K | L | Enter |
+ * | F1 | F2 F3 | F4 | F5 | | PgUp | Home | Up | End | ; |
+ * |-Shift-+-------+-------+-------+-------+ |-------+-------+-------+-------+-------|
+ * | Z | X | C | V | B | | N | M | , | . | / |
+ * | F6 | F7 | F8 | F9 | F10 | | PgDn | Left | Down | Right | |
+ * `-Shift---Layer-+-------+-------+-------+ |-------+-------+-------+---------Layer-'
+ * | Ctrl | Gui | Alt | | Space | Layer | Shift |
+ * | | | | | Funct | | |
+ * `------------------------ `-Layer-----------------'
+ */
+
+[_BASE] = LAYOUT_split_4x5_3(
+ KC_TAB, KC_ESC, KC_LPRN, KC_LCBR, KC_LBRC, KC_RBRC, KC_RCBR, KC_RPRN, KC_QUOT, KC_BSPC,
+ KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
+ SFT_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_ENT,
+ SFT_Z, LAY_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, LAY_SLS,
+ KC_LCTL, KC_LGUI, KC_LALT, LAY_SPC, LAYER, KC_RSFT
+),
+
+[_LAYER] = LAYOUT_split_4x5_3(
+ KC_TILD, KC_GRV, KC_LABK, KC_UNDS, KC_MINS, KC_PLUS, KC_EQL, KC_RABK, KC_BSLS, KC_DEL,
+ KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
+ SFT_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_PGUP, KC_HOME, KC_UP, KC_END, KC_SCLN,
+ SFT_F6, LAY_F7, KC_F8, KC_F9, KC_F10, KC_PGDN, KC_LEFT, KC_DOWN, KC_RGHT, _______,
+ _______, _______, _______, FUNCT, _______, _______
+),
+
+[_MOD_LAYER] = LAYOUT_split_4x5_3(
+ KC_TILD, _______, _______, _______, _______, KC_Q, _______, _______, _______, _______,
+ KC_TAB, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______
+),
+
+[_FUNCT] = LAYOUT_split_4x5_3(
+ QK_BOOT, _______, _______, _______, LOCK, MAC_LCK, _______, _______, _______, QK_MAGIC_SWAP_LALT_LGUI,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______
+),
+
+};
+
+bool process_record_user(uint16_t keycode, keyrecord_t *record) {
+ if (get_mods() & MOD_MASK_CAG) {
+ if (record->event.pressed) {
+ layer_on(_MOD_LAYER);
+ } else {
+ layer_off(_MOD_LAYER);
+ }
+ }
+
+ if (record->event.pressed) {
+ if (keycode == KC_BSPC && (get_mods() & MOD_MASK_ALT)) {
+ tap_code(KC_DEL);
+ return false;
+ }
+ }
+
+ return true;
+};
diff --git a/keyboards/for_science/keymaps/vial/rules.mk b/keyboards/for_science/keymaps/vial/rules.mk
new file mode 100644
index 0000000000..d57394ae1e
--- /dev/null
+++ b/keyboards/for_science/keymaps/vial/rules.mk
@@ -0,0 +1,5 @@
+VIA_ENABLE = yes
+VIAL_ENABLE = yes
+LTO_ENABLE = yes
+CONSOLE_ENABLE = no
+COMMAND_ENABLE = no
diff --git a/keyboards/for_science/keymaps/vial/vial.json b/keyboards/for_science/keymaps/vial/vial.json
new file mode 100644
index 0000000000..6369ce2e1c
--- /dev/null
+++ b/keyboards/for_science/keymaps/vial/vial.json
@@ -0,0 +1,15 @@
+{
+ "matrix": {
+ "rows": 10,
+ "cols": 5
+ },
+ "layouts": {
+ "keymap": [
+ ["0,0","0,1","0,2","0,3","0,4",{"x":1.25},"5,0","5,1","5,2","5,3","5,4"],
+ ["1,0","1,1","1,2","1,3","1,4",{"x":1.25},"6,0","6,1","6,2","6,3","6,4"],
+ ["2,0","2,1","2,2","2,3","2,4",{"x":1.25},"7,0","7,1","7,2","7,3","7,4"],
+ ["3,0","3,1","3,2","3,3","3,4",{"x":1.25},"8,0","8,1","8,2","8,3","8,4"],
+ [{"x":2}, "4,2","4,3","4,4",{"x":1.25},"9,0","9,1","9,2" ]
+ ]
+ }
+}