forked from vial-kb/vial-qmk
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create vial.json * Create config.h * Create rules.mk * Create keymap.c * Apply suggestions from code review Co-authored-by: Less/Rikki <[email protected]> * Apply suggestions from code review Co-authored-by: Less/Rikki <[email protected]> * Apply suggestions from code review Co-authored-by: Less/Rikki <[email protected]> --------- Co-authored-by: Less/Rikki <[email protected]>
- Loading branch information
Showing
4 changed files
with
280 additions
and
0 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
keyboards/kprepublic/bm60hsrgb_poker/rev2/keymaps/vial/config.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* Copyright 2021 bdtc123 | ||
* | ||
* 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/>. | ||
*/ | ||
/* SPDX-License-Identifier: GPL-2.0-or-later */ | ||
|
||
#pragma once | ||
|
||
// Vial settings | ||
#define VIAL_KEYBOARD_UID {0x1E, 0x4C, 0xE6, 0x17, 0xCB, 0x4A, 0x21, 0x14} | ||
|
||
// unlock keys unlock using ESC and Q | ||
#define VIAL_UNLOCK_COMBO_ROWS {0, 1} | ||
#define VIAL_UNLOCK_COMBO_COLS {0, 1} | ||
|
||
// tweaks to firmware size | ||
#define VIAL_TAP_DANCE_ENTRIES 4 | ||
#define VIAL_COMBO_ENTRIES 2 | ||
#define VIAL_KEY_OVERRIDE_ENTRIES 2 | ||
|
||
#define NO_ACTION_TAPPING | ||
#define NO_ACTION_ONESHOT | ||
#define VIALRGB_NO_DIRECT | ||
|
||
//prior to compiling commenting out the undef lighting animations will add them to the firmware, final size of the firmware will be affected | ||
|
||
#undef ENABLE_RGB_MATRIX_ALPHAS_MODS | ||
#undef ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN | ||
#undef ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT | ||
#undef ENABLE_RGB_MATRIX_BREATHING | ||
#undef ENABLE_RGB_MATRIX_BAND_SAT | ||
#undef ENABLE_RGB_MATRIX_BAND_VAL | ||
#undef ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT | ||
#undef ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL | ||
#undef ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT | ||
#undef ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL | ||
#undef ENABLE_RGB_MATRIX_CYCLE_ALL | ||
#undef ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT | ||
#undef ENABLE_RGB_MATRIX_CYCLE_UP_DOWN | ||
//#undef ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON | ||
#undef ENABLE_RGB_MATRIX_CYCLE_OUT_IN | ||
#undef ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL | ||
#undef ENABLE_RGB_MATRIX_CYCLE_PINWHEEL | ||
#undef ENABLE_RGB_MATRIX_CYCLE_SPIRAL | ||
#undef ENABLE_RGB_MATRIX_DUAL_BEACON | ||
#undef ENABLE_RGB_MATRIX_RAINBOW_BEACON | ||
#undef ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS | ||
#undef ENABLE_RGB_MATRIX_RAINDROPS | ||
#undef ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS | ||
#undef ENABLE_RGB_MATRIX_HUE_BREATHING | ||
#undef ENABLE_RGB_MATRIX_HUE_PENDULUM | ||
#undef ENABLE_RGB_MATRIX_HUE_WAVE | ||
#undef ENABLE_RGB_MATRIX_PIXEL_FRACTAL | ||
#undef ENABLE_RGB_MATRIX_PIXEL_FLOW | ||
#undef ENABLE_RGB_MATRIX_PIXEL_RAIN | ||
|
||
//#undef ENABLE_RGB_MATRIX_TYPING_HEATMAP | ||
#undef ENABLE_RGB_MATRIX_DIGITAL_RAIN | ||
|
||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE | ||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE | ||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE | ||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE | ||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS | ||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS | ||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS | ||
#undef ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS | ||
#undef ENABLE_RGB_MATRIX_SPLASH | ||
#undef ENABLE_RGB_MATRIX_MULTISPLASH | ||
#undef ENABLE_RGB_MATRIX_SOLID_SPLASH | ||
#undef ENABLE_RGB_MATRIX_SOLID_MULTISPLASH |
35 changes: 35 additions & 0 deletions
35
keyboards/kprepublic/bm60hsrgb_poker/rev2/keymaps/vial/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* Copyright 2021 bdtc123 | ||
* | ||
* 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 | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[0] = LAYOUT_60_ansi( | ||
QK_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, | ||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RGUI, KC_RCTL | ||
), | ||
[1] = LAYOUT_60_ansi( | ||
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, QK_BOOT, | ||
_______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, _______, _______, _______, | ||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
_______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, | ||
_______, _______, _______, _______, _______, _______, _______, _______ | ||
), | ||
|
||
}; |
14 changes: 14 additions & 0 deletions
14
keyboards/kprepublic/bm60hsrgb_poker/rev2/keymaps/vial/rules.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Build Options | ||
# change yes to no to disable | ||
# | ||
LTO_ENABLE = yes | ||
VIA_ENABLE = yes | ||
VIAL_ENABLE = yes | ||
|
||
COMBO_ENABLE = yes | ||
TAP_DANCE_ENABLE = yes | ||
QMK_SETTINGS = yes | ||
KEY_OVERRIDE_ENABLE = yes | ||
|
||
MOUSEKEY_ENABLE = no # Mouse keys | ||
VIALRGB_ENABLE = yes # Enable Vial GUI |
149 changes: 149 additions & 0 deletions
149
keyboards/kprepublic/bm60hsrgb_poker/rev2/keymaps/vial/vial.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
{ | ||
"lighting": "vialrgb", | ||
"matrix": { | ||
"rows": 5, | ||
"cols": 14 | ||
}, | ||
"layouts": { | ||
"keymap": [ | ||
[ | ||
{ | ||
"c": "#777777" | ||
}, | ||
"0,0", | ||
{ | ||
"c": "#cccccc" | ||
}, | ||
"0,1", | ||
"0,2", | ||
"0,3", | ||
"0,4", | ||
"0,5", | ||
"0,6", | ||
"0,7", | ||
"0,8", | ||
"0,9", | ||
"0,10", | ||
"0,11", | ||
"0,12", | ||
{ | ||
"c": "#aaaaaa", | ||
"w": 2 | ||
}, | ||
"0,13" | ||
], | ||
[ | ||
{ | ||
"w": 1.5 | ||
}, | ||
"1,0", | ||
{ | ||
"c": "#cccccc" | ||
}, | ||
"1,1", | ||
"1,2", | ||
"1,3", | ||
"1,4", | ||
"1,5", | ||
"1,6", | ||
"1,7", | ||
"1,8", | ||
"1,9", | ||
"1,10", | ||
"1,11", | ||
"1,12", | ||
{ | ||
"w": 1.5 | ||
}, | ||
"1,13" | ||
], | ||
[ | ||
{ | ||
"c": "#aaaaaa", | ||
"w": 1.75 | ||
}, | ||
"2,0", | ||
{ | ||
"c": "#cccccc" | ||
}, | ||
"2,1", | ||
"2,2", | ||
"2,3", | ||
"2,4", | ||
"2,5", | ||
"2,6", | ||
"2,7", | ||
"2,8", | ||
"2,9", | ||
"2,10", | ||
"2,11", | ||
{ | ||
"c": "#777777", | ||
"w": 2.25 | ||
}, | ||
"2,13" | ||
], | ||
[ | ||
{ | ||
"c": "#aaaaaa", | ||
"w": 2.25 | ||
}, | ||
"3,0", | ||
{ | ||
"c": "#cccccc" | ||
}, | ||
"3,1", | ||
"3,2", | ||
"3,3", | ||
"3,4", | ||
"3,5", | ||
"3,6", | ||
"3,7", | ||
"3,8", | ||
"3,9", | ||
"3,10", | ||
{ | ||
"c": "#aaaaaa", | ||
"w": 2.75 | ||
}, | ||
"3,13" | ||
], | ||
[ | ||
{ | ||
"w": 1.25 | ||
}, | ||
"4,0", | ||
{ | ||
"w": 1.25 | ||
}, | ||
"4,1", | ||
{ | ||
"w": 1.25 | ||
}, | ||
"4,2", | ||
{ | ||
"c": "#cccccc", | ||
"w": 6.25 | ||
}, | ||
"4,5", | ||
{ | ||
"c": "#aaaaaa", | ||
"w": 1.25 | ||
}, | ||
"4,9", | ||
{ | ||
"w": 1.25 | ||
}, | ||
"4,10", | ||
{ | ||
"w": 1.25 | ||
}, | ||
"4,11", | ||
{ | ||
"w": 1.25 | ||
}, | ||
"4,13" | ||
] | ||
] | ||
} | ||
} |