Keymap: mtdjr userspace changes and Nyquist keymap addition (#3940)
* holefully correct error in mtdjr userspace for layer_state_set_user * return state and wrap rgb actions in their own conditional * mtdjr nyquist and userspace updates * mtdjr updates as requestedqwiic_hud
parent
dbdbbbd5c9
commit
96648a133d
@ -0,0 +1,36 @@ |
|||||||
|
/*
|
||||||
|
Copyright 2017 Danny Nguyen <danny@hexwire.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/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
/* Use I2C or Serial, not both */ |
||||||
|
|
||||||
|
#define USE_SERIAL |
||||||
|
// #define USE_I2C
|
||||||
|
|
||||||
|
/* Select hand configuration */ |
||||||
|
|
||||||
|
#define MASTER_LEFT |
||||||
|
// #define MASTER_RIGHT
|
||||||
|
// #define EE_HANDS
|
||||||
|
|
||||||
|
#undef RGBLED_NUM |
||||||
|
#define RGBLIGHT_ANIMATIONS |
||||||
|
#define RGBLED_NUM 12 |
||||||
|
#define RGBLIGHT_HUE_STEP 8 |
||||||
|
#define RGBLIGHT_SAT_STEP 8 |
||||||
|
#define RGBLIGHT_VAL_STEP 8 |
@ -0,0 +1,64 @@ |
|||||||
|
#include QMK_KEYBOARD_H |
||||||
|
#include "mtdjr.h" |
||||||
|
|
||||||
|
extern keymap_config_t keymap_config; |
||||||
|
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
[_QWERTY] = LAYOUT_kc ( |
||||||
|
// ,-----------------------------. .-----------------------------.
|
||||||
|
GESC, 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 ,BSPC, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
TAB, Q , W , E , R , T , Y , U , I , O , P ,QUOT, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
RASE, A , S , D , F , G , H , J , K , L ,SCLN, ENT, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
LSFT, Z , X , C , V , B , N , M ,COMM, DOT,SLSH,xxxx, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
LOWR,LCTL,LALT,LGUI, SPC, SPC, SPC, SPC,LEFT,DOWN, UP ,RGHT |
||||||
|
// '-----------------------------' '-----------------------------'
|
||||||
|
), |
||||||
|
|
||||||
|
[_LOWER] = LAYOUT_kc( |
||||||
|
// ,-----------------------------. .-----------------------------.
|
||||||
|
TILD,xxxx,xxxx,xxxx,xxxx,xxxx, xxxx,xxxx,xxxx,UNDS,PLUS, DEL, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
xxxx,xxxx,xxxx,xxxx,xxxx,xxxx, xxxx,xxxx,xxxx,LBRC,RBRC,BSLS, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
,xxxx,xxxx,xxxx,xxxx,xxxx, xxxx,xxxx,xxxx,xxxx,xxxx, , |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
xxxx,UNDO, CUT,XCPY,XINS,xxxx, xxxx,xxxx,xxxx,xxxx,xxxx,xxxx, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
, , , , , , , ,MNXT,VOLD,VOLU,MPLY |
||||||
|
// '-----------------------------' '-----------------------------'
|
||||||
|
), |
||||||
|
|
||||||
|
[_RAISE] = LAYOUT_kc( |
||||||
|
// ,-----------------------------. .-----------------------------.
|
||||||
|
xxxx,xxxx,xxxx,xxxx,xxxx,xxxx, xxxx,xxxx,xxxx,MINS, EQL, , |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
xxxx,xxxx,xxxx,xxxx,xxxx,xxxx, xxxx,xxxx,xxxx,LCBR,RCBR,PIPE, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
,xxxx,xxxx,xxxx,xxxx,xxxx, xxxx,xxxx,xxxx,xxxx,xxxx, , |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
xxxx,xxxx,xxxx,xxxx,xxxx,xxxx, xxxx,xxxx,xxxx,xxxx,xxxx,xxxx, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
, , , , , , , ,MNXT,VOLD,VOLU,MPLY |
||||||
|
// '-----------------------------' '-----------------------------'
|
||||||
|
), |
||||||
|
|
||||||
|
[_ADJUST] = LAYOUT_kc( |
||||||
|
// ,-----------------------------. .-----------------------------.
|
||||||
|
xxxx,ROOT,PPLY,PSEF,xxxx,xxxx, F1 , F2 , F3 , F4 , F5 , F6 , |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
xxxx,xxxx,xxxx,xxxx, RST,xxxx, F7 , F8 , F9 , F10, F11, F12, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
, RGB,RHUI,RSAI,RVAI, MOD, xxxx,xxxx,xxxx,xxxx,xxxx, , |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
xxxx,RBTH,RHUD,RSAD,RVAD,RMOD, xxxx,xxxx,xxxx,xxxx,xxxx, BLB, |
||||||
|
// |----+----+----+----+----+----| |----+----+----+----+----+----|
|
||||||
|
,xxxx,xxxx,xxxx, , , , ,BLOF, BLD, BLI,BLON |
||||||
|
// '-----------------------------' '-----------------------------'
|
||||||
|
) |
||||||
|
|
||||||
|
}; |
@ -0,0 +1,2 @@ |
|||||||
|
RGBLIGHT_ENABLE = yes
|
||||||
|
BACKLIGHT_ENABLE = yes
|
Loading…
Reference in new issue