[Keymap] Add prog_qgmlwb keymap (#16890)
This commit is contained in:
parent
ef633cf461
commit
a80943579c
27 changed files with 750 additions and 0 deletions
36
users/davidkristoffersen/macros/debug.c
Normal file
36
users/davidkristoffersen/macros/debug.c
Normal file
|
@ -0,0 +1,36 @@
|
|||
// Copyright 2022 David Kristoffersen (@davidkristoffersen)
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
#include "macros.h"
|
||||
|
||||
// Replace key records with macros
|
||||
bool handle_test(uint16_t keycode) {
|
||||
switch (keycode) {
|
||||
case KC_T0: {
|
||||
// Test QK_MAKE command
|
||||
SEND_STRING("qmk compile -kb " QMK_KEYBOARD " -km " QMK_KEYMAP);
|
||||
break;
|
||||
}
|
||||
case KC_T1:
|
||||
// Test ascii characters
|
||||
SEND_STRING(" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~");
|
||||
break;
|
||||
case KC_T2:
|
||||
#ifdef LAYER_NO
|
||||
// Test other characters
|
||||
tap_code16(NO_AE);
|
||||
tap_code16(NO_OE);
|
||||
tap_code16(NO_AA);
|
||||
tap_code16(S(NO_AE));
|
||||
tap_code16(S(NO_OE));
|
||||
tap_code16(S(NO_AA));
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
};
|
||||
|
||||
bool process_debug(uint16_t keycode, keyrecord_t* record) {
|
||||
HANDLE_FALSE(handle_test(keycode));
|
||||
return true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue