logo

qmk_firmware

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

readme.md (3586B)


  1. # Halcyon Corne's Default Keymap
  2. _This keymap is a copy of the [Corne default keymap](https://github.com/qmk/qmk_firmware/tree/master/keyboards/crkbd/keymaps/default)_
  3. A simple default keymap for the Halcyon Corne
  4. ============================================
  5. Keymaps in general are quite personal, so it is difficult to come up with a default that will suit every user. We hope this keymap serves as a good starting point for your own - although it should be fairly usable out-of-the-box.
  6. What do all these layers do?
  7. ----------------------------
  8. ### Layer 0: Base layer
  9. ![Layer 0](https://i.imgur.com/Ri5cTHqh.png)
  10. This is where your basic letters live.
  11. The homing thumb fingers are used to access the different layers.
  12. * The homing left thumb finger gives access to the Numbers (or lower) layer
  13. * The homing right thumb finger gives access to the Symbols (or raise) layer
  14. * Pressing both homing thumb fingers gives access to the Adjust layer
  15. ### Layer 1: Lower
  16. ![Layer 1](https://i.imgur.com/9h6ZRQLh.png)
  17. The Lower layer gives access to your number keys on the top row. It also exposes the arrow keys in the usual Vim-style layout.
  18. ### Layer 2: Raise
  19. ![Layer 2](https://i.imgur.com/U1pf7pJh.png)
  20. The Raise layer gives access to the symbols. In addition to shifted number keys on the top row, the right hand also exposes the remaining symbol keys, both as shifted and non-shifted variants.
  21. ### Layer 3: Adjust
  22. ![Layer 3](https://i.imgur.com/A6z1DCbh.png)
  23. The Adjust layer exposes RGB adjustment keys on the left hand.
  24. Where is the keymap.c?
  25. ----------------------
  26. The keymap.c file is not published to the repository. It is generated from `keymap.json` by the build system.
  27. This avoids duplicating information and allow users to edit their keymap from the QMK Configurator web interface.
  28. How do I edit and update the keymap?
  29. ------------------------------------
  30. The `keymap.json` file is generated from the QMK Configurator interface and formatted for better readability in the context of the Ferris keyboard.
  31. To edit it, you may:
  32. * Edit it directly from a text editor.
  33. * Edit it from the QMK Configurator.
  34. If you decide to use the latter workflow, here are the steps to follow:
  35. * From the [QMK Configurator](https://config.qmk.fm/#/splitkb/halcyon/corne/rev2/LAYOUT_split_3x5_3), hit the "import QMK keymap json file" button (it has a drawing with an up arrow on it).
  36. * Browse to the location of your keymap (for example, `<your qmk repo>/keyboards/splitkb/halcyon/corne/keymaps/default/keymap.json`)
  37. * Perform any modification to the keymap in the web UI
  38. * Export the keymap to your downloads folder, by hitting the "Export QMK keymap json file" button (it has a drawing with a down arrow on it)
  39. * Replace your original keymap with the one you just downloaded
  40. I want to do more than the JSON format supports!
  41. -------------------------------------------------
  42. While the `json` format is easy to use, it does lack certain functionality - most notably custom OLED or encoder behaviour.
  43. To add this, you need to convert it to the `c` format. Do keep in mind that this is generally a one-way operation.
  44. First, from the root of your qmk repo, move to your keymap folder
  45. ```bash
  46. cd ./keyboards/splitkb/halcyon/corne/keymaps/my_personal_keymap
  47. ```
  48. Next, convert your `keymap.json` to a `keymap.c`
  49. ```bash
  50. qmk json2c -o keymap.c keymap.json
  51. ```
  52. You can add custom C code to the newly generated `keymap.c` file. Do note that you have to use **either** a C file **or** a JSON file - you cannot do both!
  53. **If a JSON file is present, the C file is ignored.**