Add vnmm keymaps and userspace (#20446)
Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com> Co-authored-by: Drashna Jaelre <drashna@live.com>master
parent
88780bf710
commit
db229d7341
@ -0,0 +1,57 @@ |
|||||||
|
/* Copyright 2022 Eugenio Pastoral
|
||||||
|
* |
||||||
|
* 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 |
||||||
|
#include "vnmm.h" |
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
/* Keymap WIN_BASE: Base Layer (Default Layer)
|
||||||
|
*/ |
||||||
|
[WIN_BASE] = LAYOUT( |
||||||
|
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_DEL, |
||||||
|
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_PGUP, |
||||||
|
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_PGDN, |
||||||
|
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_UP, KC_END, |
||||||
|
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, WIN_F, KC_LEFT, KC_DOWN, KC_RGHT), |
||||||
|
|
||||||
|
/* Keymap MAC_BASE: Alternate base layer available if I end up on macbook.
|
||||||
|
*/ |
||||||
|
[MAC_BASE] = LAYOUT( |
||||||
|
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_DEL, |
||||||
|
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_PGUP, |
||||||
|
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_PGDN, |
||||||
|
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_UP, KC_END, |
||||||
|
KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RALT, MAC_F, KC_LEFT, KC_DOWN, KC_RGHT), |
||||||
|
|
||||||
|
|
||||||
|
/* Keymap WIN_FN: Function Layer WIN_BASE
|
||||||
|
*/ |
||||||
|
[WIN_FN] = LAYOUT( |
||||||
|
KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_HUI, RGB_SAI, _______, _______, _______, _______, KC_PSCR, KC_SCRL, KC_PAUS, _______, _______, |
||||||
|
_______, RGB_RMOD, RGB_VAD, RGB_SPD, RGB_HUD, RGB_SAD, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, _______, _______, _______, _______, _______, _______, KC_MUTE, _______, _______, _______, _______, KC_VOLU, KC_MPLY, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, KC_MPRV, KC_VOLD, KC_MNXT), |
||||||
|
|
||||||
|
/* Keymap MAC_FN: Function Layer for MAC_BASE
|
||||||
|
*/ |
||||||
|
[MAC_FN] = LAYOUT( |
||||||
|
KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_HUI, RGB_SAI, _______, _______, _______, _______, KC_PSCR, KC_SCRL, KC_PAUS, _______, _______, |
||||||
|
_______, RGB_RMOD, RGB_VAD, RGB_SPD, RGB_HUD, RGB_SAD, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, _______, _______, _______, _______, _______, _______, KC_MUTE, _______, _______, _______, _______, KC_VOLU, KC_MPLY, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, KC_MPRV, KC_VOLD, KC_MNXT), |
||||||
|
}; |
@ -0,0 +1,10 @@ |
|||||||
|
# Vnmm's ANSI GMMKV2 65% Layout |
||||||
|
|
||||||
|
This keymap builds on archrovisual's but with some changes and uses the default key placements |
||||||
|
|
||||||
|
## Features |
||||||
|
|
||||||
|
- Alphabet keys light up red when caps lock is on |
||||||
|
- Pressing FN shows keys that have a definition |
||||||
|
- Via enabled |
||||||
|
- Quick reset with fn+space |
@ -0,0 +1,2 @@ |
|||||||
|
VIA_ENABLE = yes
|
||||||
|
MOUSEKEY_ENABLE = no
|
@ -0,0 +1,65 @@ |
|||||||
|
/* Copyright 2021 Glorious, LLC <salman@pcgamingrace.com>
|
||||||
|
|
||||||
|
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 |
||||||
|
#include "vnmm.h" |
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
[WIN_BASE] = LAYOUT( |
||||||
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_MUTE, |
||||||
|
KC_GRV, 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_DEL, |
||||||
|
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_PGUP, |
||||||
|
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_PGDN, |
||||||
|
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_UP, KC_END, |
||||||
|
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, WIN_F, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT |
||||||
|
), |
||||||
|
|
||||||
|
[MAC_BASE] = LAYOUT( |
||||||
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_MUTE, |
||||||
|
KC_GRV, 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_DEL, |
||||||
|
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_PGUP, |
||||||
|
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_PGDN, |
||||||
|
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_UP, KC_END, |
||||||
|
KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, WIN_F, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT |
||||||
|
), |
||||||
|
|
||||||
|
[WIN_FN] = LAYOUT( |
||||||
|
_______, DF_WIN, DF_MAC, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, |
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_HUI, RGB_SAI, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, RGB_RMOD,RGB_VAD, RGB_SPD, RGB_HUD, RGB_SAD, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, _______, KC_MPRV, _______, KC_MNXT |
||||||
|
), |
||||||
|
|
||||||
|
[MAC_FN] = LAYOUT( |
||||||
|
_______, DF_WIN, DF_MAC, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, |
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_HUI, RGB_SAI, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, RGB_RMOD,RGB_VAD, RGB_SPD, RGB_HUD, RGB_SAD, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, _______, KC_MPRV, _______, KC_MNXT |
||||||
|
), |
||||||
|
}; |
||||||
|
|
||||||
|
#if defined(ENCODER_MAP_ENABLE) |
||||||
|
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = { |
||||||
|
[WIN_BASE] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) }, |
||||||
|
[MAC_BASE] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) }, |
||||||
|
[WIN_FN] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }, |
||||||
|
[MAC_FN] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }, |
||||||
|
}; |
||||||
|
#endif |
@ -0,0 +1,10 @@ |
|||||||
|
# Vnmm's ANSI GMMK pro layout |
||||||
|
|
||||||
|
This keymap builds on the default but with a more sensible FN layer. |
||||||
|
|
||||||
|
## Features |
||||||
|
|
||||||
|
- Alphabet keys light up red when caps lock is on or shift is pressed |
||||||
|
- Pressing FN shows keys that have a definition |
||||||
|
- Via enabled |
||||||
|
- Reset to bootloader with FN+Space |
@ -0,0 +1,2 @@ |
|||||||
|
VIA_ENABLE = yes
|
||||||
|
ENCODER_MAP_ENABLE = yes
|
@ -0,0 +1,54 @@ |
|||||||
|
/* Copyright 2021 @ Keychron (https://www.keychron.com)
|
||||||
|
* |
||||||
|
* 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 |
||||||
|
#include "vnmm.h" |
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
[MAC_BASE] = LAYOUT_ansi_82( |
||||||
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, KC_DEL, |
||||||
|
KC_GRV, 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_PGUP, |
||||||
|
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_PGDN, |
||||||
|
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_HOME, |
||||||
|
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_UP, |
||||||
|
KC_LCTL, KC_LOPT, KC_LCMD, KC_SPC, KC_RCMD, MAC_F, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT), |
||||||
|
|
||||||
|
[MAC_FN] = LAYOUT_ansi_82( |
||||||
|
_______, KC_BRID, KC_BRIU, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS, |
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_SAI, RGB_HUI, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, |
||||||
|
_______, RGB_RMOD, RGB_VAD, RGB_SPD, RGB_SAD, RGB_HUD, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, |
||||||
|
_______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, KC_VOLU, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, _______, KC_MPRV, KC_VOLD, KC_MNXT), |
||||||
|
|
||||||
|
[WIN_BASE] = LAYOUT_ansi_82( |
||||||
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL, KC_DEL, |
||||||
|
KC_GRV, 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_PGUP, |
||||||
|
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_PGDN, |
||||||
|
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_HOME, |
||||||
|
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_UP, |
||||||
|
KC_LCTL, KC_LWIN, KC_LALT, KC_SPC, KC_RALT, WIN_F, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT), |
||||||
|
|
||||||
|
[WIN_FN] = LAYOUT_ansi_82( |
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS, |
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_SAI, RGB_HUI, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, |
||||||
|
_______, RGB_RMOD, RGB_VAD, RGB_SPD, RGB_SAD, RGB_HUD, _______, _______, _______, _______, _______, _______, _______, KC_END, |
||||||
|
_______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, KC_VOLU, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, _______, KC_MPRV, KC_VOLD, KC_MNXT), |
||||||
|
}; |
@ -0,0 +1,10 @@ |
|||||||
|
# Vnmm's Keychron V1 ansi layout |
||||||
|
|
||||||
|
This keymap builds on the default but with some extras I use on all my keyboards |
||||||
|
|
||||||
|
## Features |
||||||
|
|
||||||
|
- Alphabet keys light up red when caps lock is on or shift is pressed |
||||||
|
- Pressing either FN shows keys that have a definition |
||||||
|
- Via enabled |
||||||
|
- Reset to bootloader with FN+Space |
@ -0,0 +1 @@ |
|||||||
|
VIA_ENABLE = yes
|
@ -0,0 +1,57 @@ |
|||||||
|
/* Copyright 2021 @ Keychron (https://www.keychron.com)
|
||||||
|
* |
||||||
|
* 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 |
||||||
|
#include "vnmm.h" |
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
[MAC_BASE] = LAYOUT_ansi_67( |
||||||
|
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_INS, |
||||||
|
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_DEL, |
||||||
|
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_HOME, |
||||||
|
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_UP, |
||||||
|
KC_LCTL, KC_LOPT, KC_LCMD, KC_SPC, KC_RCMD, MAC_F, EXT_F, KC_LEFT, KC_DOWN, KC_RGHT), |
||||||
|
|
||||||
|
[WIN_BASE] = LAYOUT_ansi_67( |
||||||
|
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_INS, |
||||||
|
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_DEL, |
||||||
|
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_HOME, |
||||||
|
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_UP, |
||||||
|
KC_LCTL, KC_LWIN, KC_LALT, KC_SPC, KC_RALT, WIN_F, EXT_F, KC_LEFT, KC_DOWN, KC_RGHT), |
||||||
|
|
||||||
|
[MAC_FN] = LAYOUT_ansi_67( |
||||||
|
KC_GRV, KC_BRID, KC_BRIU, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_SAI, RGB_HUI, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, |
||||||
|
_______, RGB_RMOD, RGB_VAD, RGB_SPD, RGB_SAD, RGB_HUD, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, |
||||||
|
_______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, KC_VOLU, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, _______, KC_MPRV, KC_VOLD, KC_MNXT), |
||||||
|
|
||||||
|
[WIN_FN] = LAYOUT_ansi_67( |
||||||
|
KC_GRV, KC_BRID, KC_BRIU, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_SAI, RGB_HUI, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, |
||||||
|
_______, RGB_RMOD, RGB_VAD, RGB_SPD, RGB_SAD, RGB_HUD, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, |
||||||
|
_______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, KC_VOLU, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, _______, KC_MPRV, KC_VOLD, KC_MNXT), |
||||||
|
|
||||||
|
[EXTRA_FN] = LAYOUT_ansi_67( |
||||||
|
_______, 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, _______, _______, _______, _______, _______, _______) |
||||||
|
}; |
@ -0,0 +1,10 @@ |
|||||||
|
# Vnmm's Keychron V2 ansi layout |
||||||
|
|
||||||
|
This keymap builds on the default but with some extras I use on all my keyboards |
||||||
|
|
||||||
|
## Features |
||||||
|
|
||||||
|
- Alphabet keys light up red when caps lock is on or shift is pressed |
||||||
|
- Pressing either FN shows keys that have a definition |
||||||
|
- Via enabled |
||||||
|
- Reset to bootloader with FN+Space |
@ -0,0 +1 @@ |
|||||||
|
VIA_ENABLE = yes
|
@ -0,0 +1,77 @@ |
|||||||
|
/* Copyright 2021 @ Keychron (https://www.keychron.com)
|
||||||
|
* |
||||||
|
* 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 |
||||||
|
#include "vnmm.h" |
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
|
||||||
|
#define KC_TASK LGUI(KC_TAB) |
||||||
|
#define KC_FLXP LGUI(KC_E) |
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
[MAC_BASE] = LAYOUT_tkl_f13_ansi( |
||||||
|
KC_ESC, KC_BRID, KC_BRIU, KC_NO, KC_NO, RGB_VAD, RGB_VAI, KC_MPRV, KC_MPLY, KC_MNXT, KC_MUTE, KC_VOLD, KC_VOLU, KC_MUTE, KC_PSCR, KC_SCRL, KC_PAUS, |
||||||
|
KC_GRV, 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_INS, KC_HOME, KC_PGUP, |
||||||
|
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_DEL, KC_END, KC_PGDN, |
||||||
|
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_UP, |
||||||
|
KC_LCTL, KC_LOPT, KC_LCMD, KC_SPC, KC_RCMD, KC_ROPT, MO(MAC_FN), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT), |
||||||
|
|
||||||
|
[WIN_BASE] = LAYOUT_tkl_f13_ansi( |
||||||
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_MUTE, KC_PSCR, KC_SCRL, KC_PAUS, |
||||||
|
KC_GRV, 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_INS, KC_HOME, KC_PGUP, |
||||||
|
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_DEL, KC_END, KC_PGDN, |
||||||
|
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_UP, |
||||||
|
KC_LCTL, KC_LWIN, KC_LALT, KC_SPC, KC_RALT, KC_RWIN, MO(WIN_FN), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT), |
||||||
|
|
||||||
|
[MAC_FN] = LAYOUT_tkl_f13_ansi( |
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, _______, _______, _______, |
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_SAI, RGB_HUI, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, RGB_RMOD, RGB_VAD, RGB_SPD, RGB_SAD, RGB_HUD, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, _______, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, _______, _______, KC_MPRV, _______, KC_MNXT), |
||||||
|
|
||||||
|
[WIN_FN] = LAYOUT_tkl_f13_ansi( |
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, _______, _______, _______, |
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
RGB_TOG, RGB_MOD, RGB_VAI, RGB_SPI, RGB_SAI, RGB_HUI, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, RGB_RMOD, RGB_VAD, RGB_SPD, RGB_SAD, RGB_HUD, _______, _______, _______, _______, _______, _______, _______, |
||||||
|
_______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, _______, |
||||||
|
EE_CLR, _______, _______, QK_BOOT, _______, _______, _______, _______, KC_MPRV, _______, KC_MNXT), |
||||||
|
}; |
||||||
|
|
||||||
|
#ifdef ENCODER_MAP_ENABLE |
||||||
|
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = { |
||||||
|
[WIN_BASE] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU)}, |
||||||
|
[MAC_BASE] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU)}, |
||||||
|
[MAC_FN] = { ENCODER_CCW_CW(RGB_VAD, RGB_VAI)}, |
||||||
|
[WIN_FN] = { ENCODER_CCW_CW(RGB_VAD, RGB_VAI)}, |
||||||
|
}; |
||||||
|
#endif // ENCODER_MAP_ENABLE
|
||||||
|
|
||||||
|
#ifdef DIP_SWITCH_ENABLE |
||||||
|
|
||||||
|
bool dip_switch_update_user(uint8_t index, bool active) { |
||||||
|
if (index == 0) { |
||||||
|
default_layer_set(1UL << (active ? 1 : 0)); |
||||||
|
} |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
#endif // DIP_SWITCH_ENABLE
|
@ -0,0 +1,2 @@ |
|||||||
|
VIA_ENABLE = yes
|
||||||
|
ENCODER_MAP_ENABLE = yes
|
@ -0,0 +1,70 @@ |
|||||||
|
/*
|
||||||
|
* 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/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
// All of these config options can be changed by keyboard in their config.h
|
||||||
|
// These are all just the defaults I like for most of my keyboards
|
||||||
|
|
||||||
|
#ifndef RGB_MATRIX_TIMEOUT |
||||||
|
// If the keyboard is unused for 20 minutes then just turn off RGB
|
||||||
|
# define RGB_MATRIX_TIMEOUT 1200000 // 20 minutes (20 * 60 * 1000ms)
|
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef CAPS_LOCK_INDICATOR_COLOR |
||||||
|
// When caps lock is pressed, the letter keys, caps lock, and both shift keys, will light up this color.
|
||||||
|
# define CAPS_LOCK_INDICATOR_COLOR RGB_RED |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef SHIFT_INDICATOR_COLOR |
||||||
|
// If defined also light up alphabet keys when either shift is held
|
||||||
|
# define SHIFT_INDICATOR_COLOR RGB_WHITE |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef CAPS_LOCK_INDICATOR_OTHER |
||||||
|
// When caps lock is pressed, all other keys will light up this color
|
||||||
|
// #define CAPS_LOCK_INDICATOR_OTHER RGB_WHITE
|
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef CAPS_LOCK_INDICATOR_LIGHT_ALPHAS |
||||||
|
// All alphabet keys will light up, othe rwise just caps lock.
|
||||||
|
# define CAPS_LOCK_INDICATOR_LIGHT_ALPHAS |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef FN_LAYER_TRANSPARENT_KEYS_COLOR |
||||||
|
// Keys not defined in the current layer will use this color
|
||||||
|
# define FN_LAYER_TRANSPARENT_KEYS_COLOR RGB_OFF |
||||||
|
#endif |
||||||
|
|
||||||
|
// Keys defined in the current layer will use this color
|
||||||
|
#ifndef FN_LAYER_KEYS_COLOR |
||||||
|
// #define FN_LAYER_KEYS_COLOR RGB_WHITE
|
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef CURRENT_LAYER_INDICATOR_COLOR |
||||||
|
// If a key on a FN layer changes the default layer to the current layer, light up this color
|
||||||
|
# define CURRENT_LAYER_INDICATOR_COLOR RGB_WHITE |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef NKRO_INDICATOR_COLOR |
||||||
|
// If NKRO is enabled, the key on the fn layer that toggles it will light up this color
|
||||||
|
# define NKRO_INDICATOR_COLOR RGB_WHITE |
||||||
|
#endif |
||||||
|
|
||||||
|
// Don't light up my whole room when the pc is asleep
|
||||||
|
#ifndef RGB_DISABLE_WHEN_USB_SUSPENDED |
||||||
|
# define RGB_DISABLE_WHEN_USB_SUSPENDED |
||||||
|
#endif |
@ -0,0 +1,41 @@ |
|||||||
|
/* Copyright 2021
|
||||||
|
* |
||||||
|
* 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/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#ifdef DYNAMIC_KEYMAP_LAYER_COUNT |
||||||
|
#undef DYNAMIC_KEYMAP_LAYER_COUNT |
||||||
|
#endif |
||||||
|
#define DYNAMIC_KEYMAP_LAYER_COUNT 5 |
||||||
|
|
||||||
|
#define WIN_F MO(WIN_FN) |
||||||
|
#define MAC_F MO(MAC_FN) |
||||||
|
#define EXT_F MO(EXTRA_FN) |
||||||
|
|
||||||
|
#define DF_WIN DF(WIN_BASE) |
||||||
|
#define DF_MAC DF(MAC_BASE) |
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
|
||||||
|
enum layers { |
||||||
|
WIN_BASE, |
||||||
|
MAC_BASE, |
||||||
|
WIN_FN, |
||||||
|
MAC_FN, |
||||||
|
EXTRA_FN |
||||||
|
}; |
||||||
|
|
||||||
|
// clang-format on
|
@ -0,0 +1,10 @@ |
|||||||
|
# Vnmm's stuff |
||||||
|
|
||||||
|
This keymap builds on archrovisual's but with some changes and uses the default key placements |
||||||
|
|
||||||
|
## Features |
||||||
|
|
||||||
|
- Alphabet keys light up red when caps lock is on or shift is on |
||||||
|
- Pressing FN shows keys that have a definition |
||||||
|
- Via enabled |
||||||
|
- Quick reset with fn+space |
@ -0,0 +1,140 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* 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 |
||||||
|
#include "rgb_matrix_user.h" |
||||||
|
#include "keymap_user.h" |
||||||
|
|
||||||
|
keypos_t led_index_key_position[RGB_MATRIX_LED_COUNT]; |
||||||
|
|
||||||
|
#ifdef SHIFT_INDICATOR_COLOR |
||||||
|
# define is_shift_pressed (get_mods() & MOD_MASK_SHIFT) |
||||||
|
#else |
||||||
|
# define is_shift_pressed false |
||||||
|
#endif |
||||||
|
|
||||||
|
void rgb_matrix_init_user(void) { |
||||||
|
// Set up led_index_key_position
|
||||||
|
for (uint8_t row = 0; row < MATRIX_ROWS; row++) { |
||||||
|
for (uint8_t col = 0; col < MATRIX_COLS; col++) { |
||||||
|
uint8_t led_index = g_led_config.matrix_co[row][col]; |
||||||
|
if (led_index != NO_LED) { |
||||||
|
led_index_key_position[led_index] = (keypos_t){.row = row, .col = col}; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { |
||||||
|
uint8_t current_layer = get_highest_layer(layer_state); |
||||||
|
bool caps = host_keyboard_led_state().caps_lock; |
||||||
|
switch (current_layer) { |
||||||
|
case WIN_BASE: |
||||||
|
case MAC_BASE: |
||||||
|
// Light up letters if caps and light up letters and numbers if shift. If shift and caps light up just numbers.
|
||||||
|
#ifdef CAPS_LOCK_INDICATOR_COLOR |
||||||
|
if (caps && !is_shift_pressed) { |
||||||
|
rgb_matrix_set_color_by_keycode(led_min, led_max, current_layer, is_caps_lock_indicator, CAPS_LOCK_INDICATOR_COLOR); |
||||||
|
# ifdef CAPS_LOCK_INDICATOR_OTHER |
||||||
|
rgb_matrix_set_color_by_not_keycode(led_min, led_max, current_layer, is_caps_lock_indicator, CAPS_LOCK_INDICATOR_OTHER); |
||||||
|
# endif |
||||||
|
} |
||||||
|
# ifdef SHIFT_INDICATOR_COLOR |
||||||
|
else if (is_shift_pressed && !caps) { |
||||||
|
// Light up letters and other shift affected keys
|
||||||
|
rgb_matrix_set_color_by_keycode(led_min, led_max, current_layer, is_shift_indicator, SHIFT_INDICATOR_COLOR); |
||||||
|
rgb_matrix_set_color_by_keycode(led_min, led_max, current_layer, is_caps_lock_indicator, CAPS_LOCK_INDICATOR_COLOR); |
||||||
|
} else if (is_shift_pressed && caps) { |
||||||
|
// Only shift affected keys light up
|
||||||
|
rgb_matrix_set_color_by_keycode(led_min, led_max, current_layer, is_shift_indicator, SHIFT_INDICATOR_COLOR); |
||||||
|
} |
||||||
|
# endif // SHIFT_INDICATOR_COLOR
|
||||||
|
#endif // CAPS_LOCK_INDICATOR_COLOR
|
||||||
|
break; |
||||||
|
default: |
||||||
|
#ifdef FN_LAYER_TRANSPARENT_KEYS_COLOR |
||||||
|
rgb_matrix_set_color_by_keycode(led_min, led_max, current_layer, is_transparent, FN_LAYER_TRANSPARENT_KEYS_COLOR); |
||||||
|
#endif |
||||||
|
#ifdef FN_LAYER_KEYS_COLOR |
||||||
|
rgb_matrix_set_color_by_not_keycode(led_min, led_max, current_layer, is_transparent, FN_LAYER_KEYS_COLOR); |
||||||
|
#endif |
||||||
|
#ifdef CURRENT_LAYER_INDICATOR_COLOR |
||||||
|
rgb_matrix_set_color_by_keycode(led_min, led_max, current_layer, is_default_layer, CURRENT_LAYER_INDICATOR_COLOR); |
||||||
|
#endif |
||||||
|
#ifdef NKRO_INDICATOR_COLOR |
||||||
|
if (keymap_config.nkro) { |
||||||
|
rgb_matrix_set_color_by_keycode(led_min, led_max, current_layer, is_nkro_indicator, NKRO_INDICATOR_COLOR); |
||||||
|
} |
||||||
|
#endif |
||||||
|
break; |
||||||
|
} |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
// set color of keys that match the keycode
|
||||||
|
void rgb_matrix_set_color_by_keycode(uint8_t led_min, uint8_t led_max, uint8_t layer, bool (*is_keycode)(uint16_t), uint8_t red, uint8_t green, uint8_t blue) { |
||||||
|
for (uint8_t i = led_min; i < led_max; i++) { |
||||||
|
uint16_t keycode = keymap_key_to_keycode(layer, led_index_key_position[i]); |
||||||
|
if ((*is_keycode)(keycode)) { |
||||||
|
rgb_matrix_set_color(i, red, green, blue); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// set color of all leds that are not a certain keycode
|
||||||
|
void rgb_matrix_set_color_by_not_keycode(uint8_t led_min, uint8_t led_max, uint8_t layer, bool (*is_keycode)(uint16_t), uint8_t red, uint8_t green, uint8_t blue) { |
||||||
|
for (uint8_t i = led_min; i < led_max; i++) { |
||||||
|
uint16_t keycode = keymap_key_to_keycode(layer, led_index_key_position[i]); |
||||||
|
if (!(*is_keycode)(keycode)) { |
||||||
|
rgb_matrix_set_color(i, red, green, blue); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// check if keycode is a letter or shift or caps lock
|
||||||
|
bool is_caps_lock_indicator(uint16_t keycode) { |
||||||
|
#ifdef CAPS_LOCK_INDICATOR_LIGHT_ALPHAS |
||||||
|
return (KC_A <= keycode && keycode <= KC_Z) || keycode == KC_CAPS || keycode == KC_LSFT || keycode == KC_RSFT; |
||||||
|
#else |
||||||
|
return keycode == KC_CAPS; |
||||||
|
#endif |
||||||
|
} |
||||||
|
|
||||||
|
// check if keycode is the DF to default layer
|
||||||
|
#ifdef CURRENT_LAYER_INDICATOR_COLOR |
||||||
|
bool is_default_layer(uint16_t keycode) { |
||||||
|
return keycode == DF(get_highest_layer(default_layer_state)); |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
// check if keycode is the NKRO toggle
|
||||||
|
#ifdef NKRO_INDICATOR_COLOR |
||||||
|
bool is_nkro_indicator(uint16_t keycode) { |
||||||
|
return keycode == NK_TOGG; |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
// check if keycode is transparent
|
||||||
|
bool is_transparent(uint16_t keycode) { |
||||||
|
return keycode == KC_TRNS; |
||||||
|
} |
||||||
|
|
||||||
|
// check if keycode is affected by shift on the number row
|
||||||
|
#ifdef SHIFT_INDICATOR_COLOR |
||||||
|
bool is_shift_indicator(uint16_t keycode) { |
||||||
|
return (KC_1 <= keycode && keycode <= KC_0) || keycode == KC_MINS || keycode == KC_EQL || keycode == KC_GRV || keycode == KC_BSLS || keycode == KC_LBRC || keycode == KC_RBRC || keycode == KC_SCLN || keycode == KC_QUOT || keycode == KC_COMM || keycode == KC_DOT || keycode == KC_SLSH || keycode == QK_GESC || keycode == KC_LSFT || keycode == KC_RSFT; |
||||||
|
} |
||||||
|
#endif |
@ -0,0 +1,28 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* 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/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
void rgb_matrix_init_user(void); |
||||||
|
|
||||||
|
void rgb_matrix_set_color_by_keycode(uint8_t led_min, uint8_t led_max, uint8_t layer, bool (*is_keycode)(uint16_t), uint8_t red, uint8_t green, uint8_t blue); |
||||||
|
void rgb_matrix_set_color_by_not_keycode(uint8_t led_min, uint8_t led_max, uint8_t layer, bool (*is_keycode)(uint16_t), uint8_t red, uint8_t green, uint8_t blue); |
||||||
|
|
||||||
|
bool is_default_layer(uint16_t keycode); |
||||||
|
bool is_nkro_indicator(uint16_t keycode); |
||||||
|
bool is_caps_lock_indicator(uint16_t keycode); |
||||||
|
bool is_transparent(uint16_t keycode); |
||||||
|
bool is_shift_indicator(uint16_t keycode); |
@ -0,0 +1,5 @@ |
|||||||
|
SRC += vnmm.c
|
||||||
|
|
||||||
|
ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes) |
||||||
|
SRC += rgb_matrix_user.c
|
||||||
|
endif |
@ -0,0 +1,23 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* 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 "vnmm.h" |
||||||
|
|
||||||
|
void keyboard_post_init_user(void) { |
||||||
|
#ifdef RGB_MATRIX_ENABLE |
||||||
|
rgb_matrix_init_user(); |
||||||
|
#endif |
||||||
|
} |
@ -0,0 +1,21 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* 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/>.
|
||||||
|
*/ |
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include "keymap_user.h" |
||||||
|
#ifdef RGB_MATRIX_ENABLE |
||||||
|
# include "rgb_matrix_user.h" |
||||||
|
#endif |
Loading…
Reference in new issue