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.

72 lines
3.2 KiB

  1. # QMK Syllabus
  2. This page helps you build up your QMK knowledge by introducing the basics first and guiding you to understanding all the concepts you need to know to be proficient with QMK.
  3. # Beginning Topics
  4. If you read nothing else you should read the documents in this section. After reading the [Tutorial](newbs.md) you should be able to create a basic keymap, compile it, and flash it to your keyboard. The remaining documents will flesh out your knowledge of these basics.
  5. * **Learn How To Use QMK Tools**
  6. * [Tutorial](newbs.md)
  7. * [CLI](cli.md)
  8. * [GIT](newbs_git_best_practices.md)
  9. * **Learn About Keymaps**
  10. * [Layers](feature_layers.md)
  11. * [Keycodes](keycodes.md)
  12. * The full list of keycodes you can use. Note that some may require knowledge found in the Intermediate or Advanced Topics.
  13. * **Configuring IDEs** - Optional
  14. * [Eclipse](other_eclipse.md)
  15. * [VS Code](other_vscode.md)
  16. # Intermediate Topics
  17. These topics start to dig into some of the features that QMK supports. You don't have to read all of these documents, but some of the documents in the Advanced Topics section won't make sense if you skip over some of these.
  18. * **Learn How To Configure Features**
  19. <!-- * Configuration Overview FIXME(skullydazed/anyone): write this document -->
  20. * [Audio](feature_audio.md)
  21. * Lighting
  22. * [Backlight](feature_backlight.md)
  23. * [LED Matrix](feature_led_matrix.md)
  24. * [RGB Lighting](feature_rgblight.md)
  25. * [RGB Matrix](feature_rgb_matrix.md)
  26. * [Tap-Hold Configuration](tap_hold.md)
  27. * [Squeezing Space from AVR](squeezing_avr.md)
  28. * **Learn More About Keymaps**
  29. * [Keymaps](keymap.md)
  30. * [Custom Functions and Keycodes](custom_quantum_functions.md)
  31. * Macros
  32. * [Dynamic Macros](feature_dynamic_macros.md)
  33. * [Compiled Macros](feature_macros.md)
  34. * [Tap Dance](feature_tap_dance.md)
  35. * [Combos](feature_combo.md)
  36. * [Userspace](feature_userspace.md)
  37. * [Key Overrides](feature_key_overrides.md)
  38. # Advanced Topics
  39. Everything below here requires a lot of foundational knowledge. Besides being able to create keymaps using advanced features you should be familiar with using both `config.h` and `rules.mk` to configure options for your keyboard.
  40. * **Maintaining Keyboards Within QMK**
  41. * [Handwiring a Keyboard](hand_wire.md)
  42. * [Keyboard Guidelines](hardware_keyboard_guidelines.md)
  43. * [info.json Reference](reference_info_json.md)
  44. * [Debounce API](feature_debounce_type.md)
  45. * **Advanced Features**
  46. * [Unicode](feature_unicode.md)
  47. * [API](api_overview.md)
  48. * [Bootmagic Lite](feature_bootmagic.md)
  49. * **Hardware**
  50. * [How Keyboards Work](how_keyboards_work.md)
  51. * [How A Keyboard Matrix Works](how_a_matrix_works.md)
  52. * [Split Keyboards](feature_split_keyboard.md)
  53. * [Stenography](feature_stenography.md)
  54. * [Pointing Devices](feature_pointing_device.md)
  55. * **Core Development**
  56. * [Coding Conventions](coding_conventions_c.md)
  57. * [Compatible Microcontrollers](compatible_microcontrollers.md)
  58. * [Custom Matrix](custom_matrix.md)
  59. * [Understanding QMK](understanding_qmk.md)
  60. * **CLI Development**
  61. * [Coding Conventions](coding_conventions_python.md)
  62. * [CLI Development Overview](cli_development.md)