logo

qmk_firmware

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

readme.md (4523B)


  1. # DecenTKL
  2. *A TKL keyboard inspired by the language design of Atari XE and ST computers*
  3. * Keyboard Maintainer: [Bertrand Le roy](https://github.com/bleroy/3d-junkyard/blob/main/DecenTKL/)
  4. * Hardware Supported: DecenTKL (Pi Pico based)
  5. * Hardware Availability: Custom built but open-source
  6. Make example for this keyboard (after setting up your build environment):
  7. make decent/tkl:default
  8. Flashing example for this keyboard:
  9. make decent/tkl:default:flash
  10. 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).
  11. ## Bootloader
  12. Press the escape key or the button on the back of the Pi while connecting the keyboard.
  13. ## Special commands
  14. Fn + F1: Open my computer
  15. Fn + F2: Browser home
  16. Fn + F3: Open calculator
  17. Fn + F4: Open media player
  18. Fn + F5: Previous media
  19. Fn + F6: Next media
  20. Fn + F7: Play media
  21. Fn + F8: Stop media
  22. Fn + F9: Mute
  23. Fn + PgUp: Volume up
  24. Fn + PgDn: Volume down
  25. Fn + 1: Toggle RGB lighting
  26. Fn + Up: Next RGB effect
  27. Fn + Down: Previous RGB effect
  28. Fn + X: Change RGB hue
  29. Fn + S: Lower RGB brightness
  30. Fn + W: Raise RGB brightness
  31. Fn + Left: Lower RGB animation speed
  32. Fn + Right: Raise RGB animation speed
  33. Fn + \: go into bootloader mode without unplugging the keyboard
  34. ## Layout
  35. ```C
  36. /*
  37. * /─────/ /─────/─────/─────/─────/─────/─────/─────/─────/─────/─────/
  38. * /Esc / /F1 /F2 /F3 /F4 /F5 /F6 /F7 /F8 /F9 /F10 /
  39. * /─────/ /─────/─────/─────/─────/─────/─────/─────/─────/─────/─────/
  40. * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ ┌───┬───┬───┐
  41. * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Backsp│ │Ins│Hom│PgU│
  42. * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ ├───┼───┼───┤
  43. * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ │ │Del│End│PgD│
  44. * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ └───┴───┴───┘
  45. * │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter │
  46. * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ ┌───┐
  47. * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift │ │ ↑ │
  48. * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ ┌───┼───┼───┐
  49. * │Ctrl│GUI │Alt │ │ Alt│ Fn │Menu│Ctrl│ │ ← │ ↓ │ → │
  50. * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ └───┴───┴───┘
  51. */
  52. ```
  53. When holding Fn down:
  54. ```C
  55. /*
  56. * / / /MyCmp/HomeP/Calc /Media/ ⏮ / ⏭ / ⏯ / ⏹ /Mute / /
  57. *
  58. * │ │💡│ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │V+ │
  59. * │ │ │🔆│ │ │ │ │ │ │ │ │ │ │BootL│ │ │ │V- │
  60. * │ │ │🔅│ │ │ │ │ │ │ │ │ │ │
  61. * │ │ │🎨│ │ │ │ │ │ │ │ │ │ │🗘 │
  62. * │ │ │ │ │ │ │ │ │ │㉈ │🗘 │㉏ │
  63. */
  64. ```