05-07-2020, 08:18 PM
@jackhumbert great work on this firmware - I'm also a fan of qmk too
I'm curious if there's any way to bind the trackpad toggle (e.g. normally Fn+F7) to use a single key. E.g. I rarely use the right alt key so I want to bind that key (single press / no modifiers) to just toggle the trackpad.
I tried a few different things like using `R(MS_ACCEL1)` and also alternatively swapping reg_specials
[5] = REG_FN(KC_F7, 0xFE) // toggle touchpad
to be
[5] = REG_FN(0xFE, 0xFE) // toggle touchpad
and then using FS(5) in place of the right Alt key. But neither of these approaches worked.
Is there something simple I'm missing?
I'm curious if there's any way to bind the trackpad toggle (e.g. normally Fn+F7) to use a single key. E.g. I rarely use the right alt key so I want to bind that key (single press / no modifiers) to just toggle the trackpad.
I tried a few different things like using `R(MS_ACCEL1)` and also alternatively swapping reg_specials
[5] = REG_FN(KC_F7, 0xFE) // toggle touchpad
to be
[5] = REG_FN(0xFE, 0xFE) // toggle touchpad
and then using FS(5) in place of the right Alt key. But neither of these approaches worked.
Is there something simple I'm missing?