You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

133 lines
2.7 KiB

  1. arrow_pad keyboard firmware
  2. ======================
  3. ## Keyboard Info
  4. The ArrowPad is a wired conversion that can be made to any stand-alone keypad. It uses two main layers - a standard numpad, and a more advanced arrow cluster navigator.
  5. The first 24-key ArrowPad was handwired, but the PCB was wired as listed below.
  6. ```
  7. <Chip Ref Des> pin <Pin #>
  8. <Keycap Name> (Silkscreen Name if different) - <Switch Pin #>
  9. Note:
  10. U2 pin 2 is the Num Lock LED and is active low.
  11. U2 pin 1
  12. Clear (Num Lock) - 1
  13. Enter - 2
  14. Esc (ESC) - 2
  15. U2 pin 3
  16. - - 1
  17. U2 pin 4
  18. 7 - 2
  19. 8 - 2
  20. 9 - 2
  21. U2 pin 5
  22. * - 2
  23. Delete (BACK SPACE) - 2
  24. U2 pin 6
  25. 1 - 2
  26. 0 - 2
  27. . - 2
  28. , - 2
  29. U2 pin 7
  30. 4 - 2
  31. 5 - 2
  32. 6 - 2
  33. U2 pin 8
  34. Tab - 2
  35. = (/) - 2
  36. U2 pin 13
  37. Delete (BACK SPACE) - 1
  38. 9 - 1
  39. 6 - 1
  40. 3 - 1
  41. . - 1
  42. U2 pin 14
  43. Tab - 1
  44. 8 - 1
  45. 5 - 1
  46. 2 - 1
  47. 0 - 1
  48. U2 pin 15
  49. Esc (ESC) - 1
  50. = (/) - 1
  51. / (*) - 1
  52. 7 - 1
  53. 4 - 1
  54. 1 - 1
  55. + - 1
  56. U2 pin 16
  57. Enter - 1
  58. * (<--) - 1
  59. , - 1
  60. U2 pin 17
  61. Fn (#NAME?) - 1
  62. - - 2
  63. Clear (Num Lock) - 2
  64. U2 pin 18
  65. Fn (#NAME?) - 2
  66. * (<--) - 2
  67. + - 2
  68. 3 - 2
  69. 2 - 2
  70. ```
  71. More info can be found on [GeekHack](https://geekhack.org/index.php?topic=73632.msg1802497#msg1802497)
  72. The second ArrowPad was a conversion from a 21-key Genovation keypad. It used a 2 row x 11 column matrix.
  73. ```
  74. #define KEYMAP( \
  75. KM_ESC, KM_TAB, KM_BSL, KM_ARR, \
  76. KM_NUM, KM_FSL, KM_AST, KM_MIN, \
  77. KM___7, KM___8, KM___9, ___PLS, \
  78. KM___4, KM___5, KM___6, KM_PLS, \
  79. KM___1, KM___2, KM___3, ___ENT, \
  80. KM___0, _____0, KM_DOT, KM_ENT \
  81. ) { \
  82. { KM_ESC, KM_TAB, KM_BSL, KM_ARR, KM___7, KM___8, KM___9, KM_PLS, KM___1, KM___2, KM___3, }, \
  83. { KM_NUM, KM_FSL, KM_AST, KM_MIN, KM___4, KM___5, KM___6, KM_ENT, KC_NO, KM___0, KM_DOT, }, \
  84. }
  85. ```
  86. ## Quantum MK Firmware
  87. For the full Quantum feature list, see [the parent readme.md](/readme.md).
  88. ## Building
  89. Download or clone the whole firmware and navigate to the keyboards/arrow_pad folder. Once your dev env is setup, you'll be able to type `make` to generate your .hex - you can then use the Teensy Loader to program your .hex file.
  90. Depending on which keymap you would like to use, you will have to compile slightly differently.
  91. ### Default
  92. To build with the default keymap, simply run `make default`.
  93. ### Other Keymaps
  94. Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create file named `<name>.c` in the keymaps folder, and see keymap document (you can find in top readme.md) and existent keymap files.
  95. To build the firmware binary hex file with a keymap just do `make` with a keymap like this:
  96. ```
  97. $ make [default|pad_21|pad_24|<name>]
  98. ```
  99. Keymaps follow the format **__\<name\>.c__** and are stored in the `keymaps` folder.