logo

qmk_firmware

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

README.md (3103B)


  1. # ANSI Layout
  2. This is the standard ANSI keymap that I use on all of my 60% boards. This keymap
  3. includes a single function layer available by holding the designated key on the
  4. bottom row.
  5. I don't ever use Caps Lock, so that keycode is not mapped anywhere. In place of
  6. the usual Caps Lock key, I have the following bnehaviour encoded: Escape when tapped
  7. and Control when held.
  8. I also have the bottom right mod cluster mapped to navigational direction keys when tapped.
  9. Shift = Up, Alt = Down, Ctrl = Right, Fn = Left. When held, these keys send the usual modifier
  10. signals.
  11. ```
  12. /* Base layer
  13. * ,-----------------------------------------------------------------------------------------.
  14. * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | Backspace |
  15. * |-----------------------------------------------------------------------------------------+
  16. * | Tab | Q | W | E | R | T | Y | U | I | O | P | [ | ] | \ |
  17. * |-----------------------------------------------------------------------------------------+
  18. * | Esc/Ctrl| A | S | D | F | G | H | J | K | L | ; | ' | Enter |
  19. * |-----------------------------------------------------------------------------------------+
  20. * | Shift | Z | X | C | V | B | N | M | , | . | ? | Shift |
  21. * |-----------------------------------------------------------------------------------------+
  22. * | Ctrl | Alt | Cmd | Space | Cmd | Fn | Alt | Ctrl |
  23. * `-----------------------------------------------------------------------------------------'
  24. */
  25. ```
  26. While holding the function key, you have access to the following layout. Any key
  27. not indicated is considered "transparent" and sends the signal indicated in the
  28. layer below. This function later gets you dedicated access to Escape and Delete
  29. keys, function keys on numbers, WASD directions, other navigation, multimedia
  30. controls, RGB (underglow) controls, and firmware reset (DFU mode).
  31. ```
  32. /* Fn layer
  33. * ,-----------------------------------------------------------------------------------------.
  34. * | Esc | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | Del |
  35. * |-----------------------------------------------------------------------------------------+
  36. * | | Home| Up | End | | | | | Mute| | | Pg+ | Pg- | Reset |
  37. * |-----------------------------------------------------------------------------------------+
  38. * | | Left| Down|Right| | | |Brt- |Vol- |Vol+ |Brt+ | | RGB Toggle |
  39. * |-----------------------------------------------------------------------------------------+
  40. * | | | | | | | | |R(Bt-)|R(Bt+)|R(Rot)| |
  41. * |-----------------------------------------------------------------------------------------+
  42. * | | | | | | | | |
  43. * `-----------------------------------------------------------------------------------------'
  44. */
  45. ```