Miryoku ZMK: Add combos involving thumb keys #305
-
I'm quite familiar with Miryoku on QMK but just started building my first keyboard with ZMK. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Combos on the thumbs work the same way as any other key positions. However, if you already have https://github.com/manna-harbour/miryoku_zmk#key-emulation-combos enabled (thumb combos are enabled automatically on 34 key boards etc.) you'll have to increase the combos per key kconfig, and also note that key positions are based on keyboard keymap key position index, e.g. in https://github.com/manna-harbour/miryoku_zmk/blob/master/miryoku/mapping/50/kyria.h you need to count in this section https://github.com/manna-harbour/miryoku_zmk/blob/aa47838943624650f51830df99faf217e2eb48f3/miryoku/mapping/50/kyria.h#L28-L31 as shown here https://github.com/manna-harbour/miryoku_zmk/blob/aa47838943624650f51830df99faf217e2eb48f3/miryoku/mapping/50/kyria.h#L32-L33. |
Beta Was this translation helpful? Give feedback.
Combos on the thumbs work the same way as any other key positions. However, if you already have https://github.com/manna-harbour/miryoku_zmk#key-emulation-combos enabled (thumb combos are enabled automatically on 34 key boards etc.) you'll have to increase the combos per key kconfig, and also note that key positions are based on keyboard keymap key position index, e.g. in https://github.com/manna-harbour/miryoku_zmk/blob/master/miryoku/mapping/50/kyria.h you need to count in this section https://github.com/manna-harbour/miryoku_zmk/blob/aa47838943624650f51830df99faf217e2eb48f3/miryoku/mapping/50/kyria.h#L28-L31 as shown here https://github.com/manna-harbour/miryoku_zmk/blob/aa478389436246…