mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-06-22 13:12:43 -04:00
fixing bugs and setting up encoder debug environment
- Had to fix bugs with TR_SCLN and ploopy nano drag scroll - added mouse scroll wheel and rgb mode for debug purposes
This commit is contained in:
parent
94849eef72
commit
a370965d1c
4 changed files with 20 additions and 19 deletions
|
@ -20,6 +20,20 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
}
|
||||
return false;
|
||||
|
||||
case PN_DRGS:
|
||||
if (record->event.pressed) {
|
||||
//tap numlock twice to toggle ploopy nano drag scroll
|
||||
double_tap(KC_NUM, KC_NUM,WAIT_DELAY);
|
||||
}
|
||||
return false;
|
||||
|
||||
case PN_PDPI:
|
||||
if (record->event.pressed) {
|
||||
//tap capslock twice to cycle ploopy nano pointer DPI
|
||||
double_tap(KC_CAPS, KC_CAPS, WAIT_DELAY);
|
||||
}
|
||||
return false;
|
||||
|
||||
//https://docs.qmk.fm/#/mod_tap?id=changing-both-tasp-and-hold
|
||||
//https://getreuer.info/posts/keyboards/triggers/index.html#tap-vs.-long-press
|
||||
//https://www.jonashietala.se/series/t-34/ he focuses on a keymap for programming/VIM
|
||||
|
@ -40,8 +54,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
case TR_GRV:
|
||||
case TR_SCLN:
|
||||
case TR_QUOT:
|
||||
case PN_DRGS:
|
||||
case PN_PDPI:
|
||||
return process_tap_hold_key(record, keycode);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue