logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

readme.md (1803B)


  1. # naKey
  2. Firmware for custom keyboard
  3. Keyboard Maintainer: [James Underwood](https://github.com/ju0)
  4. Hardware Supported: naKey
  5. Hardware Availability: [ckeys.org](https://ckeys.org)
  6. To build this keyboard, follow the [build guide](https://ckeys.org/tutorials/nakey-numpad-build-guide/).
  7. Make example for this keyboard (after setting up your build environment):
  8. make ckeys/nakey:default
  9. See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information.
  10. ## Quantum MK Firmware
  11. For the full Quantum feature list, see [the parent readme](/).
  12. ## Building
  13. Download or clone the whole firmware and navigate to the root folder. Once your dev env is setup, you'll be able to type `make ckeys/nakey:default` to generate your .hex - you can then use the Teensy Loader to program your .hex file.
  14. (Note: replace naKey with the name of your keyboard.)
  15. Depending on which keymap you would like to use, you will have to compile slightly differently.
  16. ### Default
  17. To build with the default keymap, simply run `make ckeys/nakey:default`.
  18. ### Other Keymaps
  19. Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create a folder with the name of your keymap in the keymaps folder. Create a `readme.md` and a `keymap.c` file to complete your new keymap. When you are done your file tree should look like this:
  20. * `qmk_firmware/`
  21. * `keyboard/`
  22. * `keymaps/`
  23. * `config.h` (optional)
  24. * `keymap.c`
  25. * `readme.md`
  26. * `rules.mk` (optional)
  27. To build the firmware binary hex file with a keymap just do `make` with a keymap like this:
  28. ```
  29. $ make naKey-[default|jack|<name>]
  30. ```