|
|
9 yıl önce | |
|---|---|---|
| .. | ||
| ez | 9 yıl önce | |
| infinity | 9 yıl önce | |
| keymaps | 9 yıl önce | |
| Makefile | 9 yıl önce | |
| config.h | 9 yıl önce | |
| ergodox.c | 9 yıl önce | |
| ergodox.h | 9 yıl önce | |
| readme.md | 9 yıl önce | |
There are two main ways you could customize the ErgoDox (EZ and Infinity)
teensy-loader-cli), so you may prefer to use this.This requires a little bit of familiarity with coding. If you are just compiling an existing keymap and don't want to create your own, you can skip step 4, 5 and 8.
keyboards/ergodox/keymaps/default/keymap.c into keymaps/your_name/keymap.c (for example, keymaps/german/keymap.c)make keymap=keymap_name. For example, make keymap=german. This will result in a hex file, which will be called ergodox_ez_keymap_name.hex, e.g. ergodox_ez_german.hex. For Infinity ErgoDox you need to add subproject=infinity to the make command.make teensy keymap=keymap_name.Infinity ErgoDox - Flash the firmware by running make dfu-util keymap=keymap_name subproject=infinity
Good luck! :)
The QMK firmware is open-source, so it would be wonderful to have your contribution! Within a very short time after launching we already amassed dozens of user-contributed keymaps, with all sorts of creative improvements and tweaks. This is very valuable for people who aren't comfortable coding, but do want to customize their ErgoDox. To make it easy for these people to use your layout, I recommend submitting your PR in the following format.
keymaps/german in this example).keymap.c - this is your actual keymap file; please update the ASCII comments in the file so they correspond with what you did.readme.md - a readme file, which GitHub would display by default when people go to your directory. Explain what's different about your keymap, what you tweaked or how it works. No specific format to follow, just communicate what you did. :)Let's say you want a certain key in your layout to send a colon; to figure out what keycode to use to make it do that, you're going to need quantum/keymap_common.h.
That file contains a big list of all of the special, fancy keys (like, being able to send % on its own and whatnot).
If you want to send a plain vanilla key, you can look up its code under doc/keycode.txt. That's where all the boring keys hang out.