* [完全菜鸟指南](newbs.md) * [入门](newbs_getting_started.md) * [构建你的第一个固件](newbs_building_firmware.md) * [刷新固件](newbs_flashing.md) * [测试和调试](newbs_testing_debugging.md) * [Git最佳实践](newbs_best_practices.md) * [学习资源](newbs_learn_more_resources.md) * [QMK基础](README.md) * [QMK 简介](getting_started_introduction.md) * [贡献 QMK](contributing.md) * [如何使用Github](getting_started_github.md) * [获得帮助](getting_started_getting_help.md) * [问题解答](faq.md) * [一般问题](faq_general.md) * [构建/编译QMK](faq_build.md) * [调试/故障排除 QMK](faq_debug.md) * [键盘布局](faq_keymap.md) * 详细指南 * [安装构建工具](getting_started_build_tools.md) * [流浪者指南](getting_started_vagrant.md) * [构建/编译指令](getting_started_make_guide.md) * [刷新固件](flashing.md) * [定制功能](custom_quantum_functions.md) * [布局概述](keymap.md) * [硬件](hardware.md) * [AVR 处理器](hardware_avr.md) * [驱动](hardware_drivers.md) * 参考 * [键盘指南](hardware_keyboard_guidelines.md) * [配置选项](config_options.md) * [键码](keycodes.md) * [记录最佳实践](documentation_best_practices.md) * [文档指南](documentation_templates.md) * [词汇表](reference_glossary.md) * [单元测试](unit_testing.md) * [有用的功能](ref_functions.md) * [配置器支持](reference_configurator_support.md) * [info.json 格式](reference_info_json.md) * [特性](features.md) * [基本键码](keycodes_basic.md) * [US ANSI 控制键](keycodes_us_ansi_shifted.md) * [量子键码](quantum_keycodes.md) * [高级键码](feature_advanced_keycodes.md) * [音频](feature_audio.md) * [自动控制](feature_auto_shift.md) * [背光](feature_backlight.md) * [蓝牙](feature_bluetooth.md) * [Bootmagic](feature_bootmagic.md) * [组合](feature_combo) * [命令](feature_command.md) * [动态宏指令](feature_dynamic_macros.md) * [编码器](feature_encoders.md) * [Grave Escape](feature_grave_esc.md) * [键锁](feature_key_lock.md) * [层](feature_layouts.md) * [引导键](feature_leader_key.md) * [LED 阵列](feature_led_matrix.md) * [宏指令](feature_macros.md) * [鼠标键](feature_mouse_keys.md) * [一键功能](feature_advanced_keycodes.md#one-shot-keys) * [指针设备](feature_pointing_device.md) * [PS/2 鼠标](feature_ps2_mouse.md) * [RGB 光](feature_rgblight.md) * [RGB 矩阵](feature_rgb_matrix.md) * [空格候补换挡](feature_space_cadet_shift.md) * [空格候补换挡回车](feature_space_cadet_shift_enter.md) * [速录机](feature_stenography.md) * [换手](feature_swap_hands.md) * [踢踏舞](feature_tap_dance.md) * [终端](feature_terminal.md) * [热敏打印机](feature_thermal_printer.md) * [Unicode](feature_unicode.md) * [用户空间](feature_userspace.md) * [速度键](feature_velocikey.md) * 针对制造者和定制者 * [飞线指南](hand_wire.md) * [ISP 刷新指南](isp_flashing_guide.md) * [ARM 调试指南](arm_debugging.md) * [I2C 驱动](i2c_driver.md) * [GPIO 控制器](internals_gpio_control.md) * [Proton C 转换](proton_c_conversion.md) * 深入了解 * [键盘如何工作](how_keyboards_work.md) * [理解 QMK](understanding_qmk.md) * 其他话题 * [使用Eclipse开发QMK](other_eclipse.md) * [使用VSCode开发QMK](other_vscode.md) * [支持](support.md) * QMK 内构 (正在编写) * [定义](internals_defines.md) * [输入回调寄存器](internals_input_callback_reg.md) * [Midi 设备](internals_midi_device.md) * [Midi 设备设置过程](internals_midi_device_setup_process.md) * [Midi 工具库](internals_midi_util.md) * [发送函数](internals_send_functions.md) * [Sysex 工具](internals_sysex_tools.md) 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360