forked from forks/qmk_firmware
f19c8b2d5d
* Added WOW layer
* Initial commit for this branch. Still a work in progress.
* Added Rorschach keyboard layout.
* Simplified keymap
Removed the media layer to help simplify things. Also corrected some
keymap mistakes in the Qwerty and Colemak layers.
* Added ErgoTravel keymap.
* reverted to previous layout.
* Added Sol keyboard layout.
* Minor changes to keymap.
* more changes
* Added sol graphic by Kagerufu and Cardiactuna
* Added colemak layer because I can.
* more changes to sol layout
* Streamlined Sol layout
* minor tweaks to sol layout
* further revisions to sol keymap.
* Removing deprecated #include statements from my keymaps
* Standardizing keymap `include` lines.
* Minor change to keymap.
Swapped ESC with GRV on all alpha layers.
* Tweaks to Atreus62 Keymap
Added a layer for FPS RPG Loot Shooters.
* Fixed readme.md for Atreus keymap.
Replaced "Keymap" with "Layer" in illustrations for continuity's sake
* More readme.md clean-up
More clarification in the Atreus readme file.
* Next verse, same as the first.
* Changes to Sol layout
Bringing my Sol layout more in line with my other Orthos.
* Fixed keymap GUI.
Replaced left-hand "RGUI" with "LGUI" on all layers as it should be.
* Added ALPS64 keymap
* Formatting corrections
* fixes to config.h and keymap.c
* Fixed errors
This commit fixes a pathing issue in keyboards/orthodox/keymaps/xyverz/config.h
and removes an stupid comma at the end of each LAYOUT stanza in
keyboards/rgbkb/sol/keymaps/xyverz/keymap.c left there by me.
* Fixed orthodox keymap config.h file
I hope this one fixes the problem. *sigh*
* Making suggested changes for PR#6192
Thanks to noroadsleft, fauxpark, and drashna. Still have
more work to do, but at least these suggestions have been applied.
* Fixing build errors
Travis has shown me the error of my ways...
* More fixes and corrections
Those pesky semicolons...
* More Fixes.
* Removing unneeded code snippet.
* fixed omitted semicolons
* Code updates to my keymaps
Updating the code for my Iris, Atreus62, and Atreus keymaps.
* Fixed Atreus62 Keymap
I forgot to add in the aliases for LOWER, RAISE, and ADJUST.
* Added userspace
Also made changes to Atreus62 Keymap to turn the red LEDs off on the ProMicro
* Fixing code that disables LEDs on ProMicros
Also tidied up my ErgoTravel keymap.
* Moving userspace to new branch
Moving my userspace to a new branch for the sake of keeping things
clean on the master branch.
* Added F13-F15 to Atreus62 Layout.
* Update readme.md.
* Updated Phantom keymap to current keymap standards
* Phantom keymap updates
Further updates - tidying and removing cruft.
Thank you zvecr on Discord for the help!
* Standards Updates
Bringing my Kinesis keymap up to current code standards
* Adding a readme
* Bring GH60 code to standard
* Utilizing layouts for 60_ansi and tkl_ansi
Moving my GH60 and Phantom keymaps into layouts/community/
* Alps64 layout removal
Removing my Alps64 keymap now that I've setup my 60_ansi layout.
* Moved Clueboard layout to community/66_ansi.
* Additions to 66_ansi config.h
* Bringing keymaps up to standard.
* More updates to keymaps.
* Syntax updates
* Revert "Syntax updates"
This reverts commit a892b2d9fc
.
* Moved WIP keymaps
Moved my WIP keymaps to my wip_keymaps branch to keep my master clean
* Updates requested by noroadsleft
* more changes per noroadsleft
More fixes as requested by noroadsleft. Further tidy-up and
standardization of my keymap code.
140 lines
4.5 KiB
C
140 lines
4.5 KiB
C
#include QMK_KEYBOARD_H
|
|
|
|
extern keymap_config_t keymap_config;
|
|
|
|
|
|
enum layer_names {
|
|
_DVORAK,
|
|
_QWERTY,
|
|
_COLEMAK,
|
|
_WOW,
|
|
_LOWER,
|
|
_RAISE,
|
|
_ADJUST
|
|
};
|
|
|
|
enum custom_keycodes {
|
|
DVORAK = SAFE_RANGE,
|
|
QWERTY,
|
|
COLEMAK,
|
|
WOW,
|
|
LOWER,
|
|
RAISE,
|
|
ADJUST
|
|
};
|
|
|
|
#define KC_____ KC_TRNS
|
|
#define KC_LOWR LOWER
|
|
#define KC_RASE RAISE
|
|
#define KC_RST RESET
|
|
#define KC_BL_S BL_STEP
|
|
#define KC_QWRT QWERTY
|
|
#define KC_CLMK COLEMAK
|
|
#define KC_DVRK DVORAK
|
|
#define KC_WOW WOW
|
|
#define KC_BSLT ALT_T(KC_BSPC)
|
|
#define ADJUST MO(_ADJUST)
|
|
#define LOWER MO(_LOWER)
|
|
#define RAISE MO(_RAISE)
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
|
|
|
|
[_DVORAK] = LAYOUT_kc (
|
|
GRV , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 ,BSLS,
|
|
TAB ,QUOT,COMM,DOT , P , Y , F , G , C , R , L ,SLSH,
|
|
ESC , A , O , E , U , I , D , H , T , N , S ,MINS,
|
|
LSFT,SCLN, Q , J , K , X ,LOWR, RASE, B , M , W , V , Z ,RSFT,
|
|
LCTL,BSLT,LGUI, ENT ,SPC ,LALT
|
|
),
|
|
|
|
[_QWERTY] = LAYOUT_kc (
|
|
EQL , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 ,MINS,
|
|
TAB , Q , W , E , R , T , Y , U , I , O , P ,BSLS,
|
|
ESC , A , S , D , F , G , H , J , K , L ,SCLN,QUOT,
|
|
LSFT, Z , X , C , V , B ,LOWR, RASE, N , M ,COMM,DOT ,SLSH,RSFT,
|
|
LCTL,BSPC,LGUI, ENT ,SPC ,LALT
|
|
),
|
|
|
|
[_COLEMAK] = LAYOUT_kc (
|
|
EQL , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 ,MINS,
|
|
TAB , Q , W , F , P , G , J , L , U , Y ,SCLN,BSPC,
|
|
ESC , A , R , S , T , D , H , N , E , I , O ,QUOT,
|
|
LSFT, Z , X , C , V , B ,LOWR, RASE, K , M ,COMM,DOT ,SLSH,RSFT,
|
|
LCTL,BSPC,LGUI, ENT ,SPC ,LALT
|
|
),
|
|
|
|
[_WOW] = LAYOUT_kc (
|
|
GRV , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 ,BSLS,
|
|
TAB ,QUOT,COMM,DOT , P , Y , F , G , C , R , L ,SLSH,
|
|
ESC , A , O , E , U , I , D , H , T , N , S ,MINS,
|
|
LSFT,SCLN, Q , J , K , X ,LALT, RGUI, B , M , W , V , Z ,RSFT,
|
|
LOWR,BSPC,LCTL, ENT ,SPC ,RASE
|
|
),
|
|
|
|
[_LOWER] = LAYOUT_kc (
|
|
F11 , F1 , F2 , F3 , F4 , F5 , F6 , F7 , F8 , F9 ,F10 ,F12 ,
|
|
TILD,____,____, UP ,____,____, ____,____,____,____,____,____,
|
|
CAPS,____,LEFT,DOWN,RGHT,HOME, PGUP,UNDS,PLUS,LCBR,RCBR,PIPE,
|
|
BL_S,____,MUTE,VOLD,VOLU,END ,____, ____,PGDN,MPRV,MPLY,MNXT,____,____,
|
|
____,DEL ,____, ____,INS ,____
|
|
),
|
|
|
|
[_RAISE] = LAYOUT_kc (
|
|
F11 , F1 , F2 , F3 , F4 , F5 , F6 , F7 , F8 , F9 ,F10 ,F12 ,
|
|
GRV ,____,____, UP ,____,____, ____,____,____,____,____,____,
|
|
CAPS,____,LEFT,DOWN,RGHT,HOME, PGUP,MINS,EQL ,LBRC,RBRC,BSLS,
|
|
BL_S,____,MUTE,VOLD,VOLU,END ,____, ____,PGDN,MPRV,MPLY,MNXT,____,____,
|
|
____,DEL ,____, ____,INS ,____
|
|
),
|
|
|
|
[_ADJUST] = LAYOUT_kc (
|
|
F11 , F1 , F2 , F3 , F4 , F5 , F6 , F7 , F8 , F9 ,F10 ,F12 ,
|
|
____,RST ,____,____,____,____, ____,____,____,____,____,____,
|
|
____,____,____,____,____,____, ____,QWRT,CLMK,DVRK,WOW ,____,
|
|
____,____,____,____,____,____,____, ____,____,____,____,____,____,____,
|
|
____,____,____, ____,____,____
|
|
)
|
|
|
|
};
|
|
|
|
#ifdef AUDIO_ENABLE
|
|
float tone_qwerty[][2] = SONG(QWERTY_SOUND);
|
|
#endif
|
|
|
|
void matrix_init_user(void) {
|
|
// This will disable the red LEDs on the ProMicros
|
|
setPinOutput(D5);
|
|
writePinLow(D5);
|
|
setPinOutput(B0);
|
|
writePinLow(B0);
|
|
};
|
|
|
|
layer_state_t layer_state_set_user(layer_state_t state) {
|
|
return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
|
|
}
|
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|
switch (keycode) {
|
|
case DVORAK:
|
|
if (record->event.pressed) {
|
|
set_single_persistent_default_layer(_DVORAK);
|
|
}
|
|
return false;
|
|
case COLEMAK:
|
|
if (record->event.pressed) {
|
|
set_single_persistent_default_layer(_COLEMAK);
|
|
}
|
|
return false;
|
|
case QWERTY:
|
|
if (record->event.pressed) {
|
|
set_single_persistent_default_layer(_QWERTY);
|
|
}
|
|
return false;
|
|
case WOW:
|
|
if (record->event.pressed) {
|
|
set_single_persistent_default_layer(_WOW);
|
|
}
|
|
return false;
|
|
}
|
|
return true;
|
|
} |