logo

qmk_firmware

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

readme.md (2715B)


  1. # DecenTKL NumPad
  2. *A numeric pad to go with the DecenTKL keyboard*
  3. This numeric pad also includes a 3-port USB hub, enabling the connection of the TKL
  4. keyboard on the back of the pad.
  5. The pad also has two Atari joystick ports.
  6. * Keyboard Maintainer: [Bertrand Le roy](https://github.com/bleroy/3d-junkyard/blob/main/DecenTKL/)
  7. * Hardware Supported: DecenTKL (RP2040-based)
  8. * Hardware Availability: Custom built but open-source
  9. Make example for this keyboard (after setting up your build environment):
  10. make decent/numpad:default
  11. Flashing example for this keyboard:
  12. make decent/numpad:default:flash
  13. See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
  14. ## Bootloader
  15. Press the Num key or the button on the back of the board while connecting the pad.
  16. ## Special commands
  17. Num + Enter: go into bootloader mode without unplugging the keyboard
  18. ## Layout
  19. ```C
  20. /*
  21. * /─────/─────/
  22. * /F11 /F12 /
  23. * /─────/─────/
  24. * ┌───┬───┬───┬───┐
  25. * │Num│ / │ * │ - │
  26. * ├───┼───┼───┼───┤
  27. * │ 7 │ 8 │ 9 │ + │
  28. * ├───┼───┼───┤ │
  29. * │ 4 │ 5 │ 6 │ │
  30. * ├───┼───┼───┼───┤
  31. * │ 1 │ 2 │ 3 │Ent│
  32. * ├───┴───┼───┤ er│
  33. * │ 0 │ . │ │
  34. * └───────┴───┴───┘
  35. */
  36. ```
  37. While holding the Num key:
  38. ```C
  39. /*
  40. * /─────────/─────────/
  41. * /Shift+F11/Shift+F12/
  42. * /─────────/─────────/
  43. * ┌───────┬───────┬───────┬───────┐
  44. * │ │ │ │Bright-│
  45. * ├───────┼───────┼───────┼───────┤
  46. * │ │ Hue + │ │Bright+│
  47. * ├───────┼───────┼───────┤ │
  48. * │Speed -│ Swirl │Speed +│ │
  49. * ├───────┼───────┼───────┼───────┤
  50. * │Mode - │ Hue - │Mode + │ │
  51. * ├───────┴───────┼───────┤BootSel│
  52. * │ on / off │ │ │
  53. * └───────────────┴───────┴───────┘
  54. */
  55. ```