diff options
author | peepeetee <43021794+peepeetee@users.noreply.github.com> | 2022-02-06 13:16:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-05 21:16:21 -0800 |
commit | 38e085df87820941bcfcdce3b3bc16e46855f557 (patch) | |
tree | cf0d99e0b6a4f3780d35e079d555e31b7a6d002d /keyboards/input_club/ergodox_infinity/keymaps/narze/readme.md | |
parent | 10fa737ab879fea7cdb03b393d1efbcb28a4a12f (diff) |
move input club keyboards into vendor folder (#15788)
Diffstat (limited to 'keyboards/input_club/ergodox_infinity/keymaps/narze/readme.md')
-rw-r--r-- | keyboards/input_club/ergodox_infinity/keymaps/narze/readme.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/input_club/ergodox_infinity/keymaps/narze/readme.md b/keyboards/input_club/ergodox_infinity/keymaps/narze/readme.md new file mode 100644 index 0000000000..3094b021e0 --- /dev/null +++ b/keyboards/input_club/ergodox_infinity/keymaps/narze/readme.md @@ -0,0 +1,31 @@ +# narze's layout + +## Notes +- SuperDuper mode for Ergodox is still under development, since combo keys does not work very well on Ergodox firmware. + Now it is using multiple layers as a workaround. Actual implementation using combos are on my Planck layout. + +## Key features +- Qwerty + [Colemak](https://colemak.com) layouts, and you can type Qwerty on software-level Colemak as well. Very useful for gaming or when your friend wanna type something but don't use Colemak. +- [(S)uper (D)uper Mode](/users/narze/readme.md) +- Mouse keys with Z + +## Build instructions +If your environment is ready to build with `make`, don't use docker since it takes 5m+ to compile. +Use the instructions in Ergodox Infinity's readme. + +#### Left side (Docker) +``` +cd /path/to/qmk_firmware +util/docker_build.sh ergodox_infinity:narze +avr-objcopy -Iihex -Obinary .build/ergodox_infinity_narze.hex .build/ergodox_infinity_narze_left.bin +dfu-util --device 1c11:b007 -D .build/ergodox_infinity_narze_left.bin +``` + +#### Right side (Docker) +You have to override `usb_args` in order to pass `MASTER=right` to docker using provided build script. +``` +cd /path/to/qmk_firmware +usb_args="-e MASTER=right" util/docker_build.sh ergodox_infinity:narze +avr-objcopy -Iihex -Obinary .build/ergodox_infinity_narze.hex .build/ergodox_infinity_narze_right.bin +dfu-util --device 1c11:b007 -D .build/ergodox_infinity_narze_right.bin +``` |