diff options
author | IskandarMa <epiciskandar@gmail.com> | 2022-01-19 02:24:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 18:24:02 +0000 |
commit | f6a7f4d4aca4a1808850e2dcd8cc223ae5202062 (patch) | |
tree | fefc9beff20ea6438e9c1927d83319ed4c85a6b0 /docs/zh-cn/easy_maker.md | |
parent | 8a3dfe2246c4a6182cf18349e9c4d0d28cae4ec5 (diff) | |
download | qmk_firmware-f6a7f4d4aca4a1808850e2dcd8cc223ae5202062.tar.gz qmk_firmware-f6a7f4d4aca4a1808850e2dcd8cc223ae5202062.zip |
update the Chinese translation based on the latest English version (#14924)
Co-authored-by: peepeetee <43021794+peepeetee@users.noreply.github.com>
Co-authored-by: Joy Lee <chang.li@westberrytech.com>
Co-authored-by: LitoMore <LitoMore@users.noreply.github.com>
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Diffstat (limited to 'docs/zh-cn/easy_maker.md')
-rw-r--r-- | docs/zh-cn/easy_maker.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/zh-cn/easy_maker.md b/docs/zh-cn/easy_maker.md new file mode 100644 index 000000000..420c77d3a --- /dev/null +++ b/docs/zh-cn/easy_maker.md | |||
@@ -0,0 +1,37 @@ | |||
1 | # 极简式制作 - 通过配置器进行一次性的工程构建 | ||
2 | |||
3 | <!--- | ||
4 | original document: 0.15.12:docs/easy_maker.md | ||
5 | git diff 0.15.12 HEAD -- docs/easy_maker.md | cat | ||
6 | --> | ||
7 | |||
8 | 你是否需要一种极简的控制器编程方案,类似Proton C或Teensy 2.0,以进行一次性的工程构建?QMK提供了极简制作器,通过QMK配置器可以在几分钟内制作一个固件。 | ||
9 | |||
10 | 有几种极简制作器,取决于你需要什么样的: | ||
11 | |||
12 | * [引脚直连](https://config.qmk.fm/#/?filter=ez_maker/direct) - 将每个开关独立直连到一个引脚 | ||
13 | * 引脚直连 + 背光 (即将可用) - 类似引脚直连,单独加一个引脚连接到[背光](zh-cn/feature_backlight.md)控制器上 | ||
14 | * 引脚直连 + 小键盘锁 (即将可用) - 类似引脚直连,单独加一个引脚连接到Numlock LED上 | ||
15 | * 引脚直连 + 大写锁 (即将可用) - 类似引脚直连, 单独加一个引脚连接到Capslock LED上 | ||
16 | * 引脚直连 + 编码器 (即将可用) - 类似引脚直连, 再加两个引脚用于连接一个旋钮编码器 | ||
17 | |||
18 | ## 快速指引 | ||
19 | |||
20 | 最简单的情况是使用一个引脚直连的主控板,将每个引脚连接到一个开关,另一端再接地即可,从以下键盘列表中可以选择一款支持的MCU: | ||
21 | |||
22 | * <https://config.qmk.fm/#/?filter=ez_maker/direct> | ||
23 | |||
24 | 更多信息请参见[引脚直连](#direct-pin)一节。 | ||
25 | |||
26 | # 引脚直连 :id=direct-pin | ||
27 | |||
28 | 与其名字表意相同,它的原理是一个引脚连接一个开关,每个开关的另一端接地(VSS或GND),不需要额外的部件,通常MCU内部自带上拉电阻,因此可以感知开关动作。 | ||
29 | |||
30 | |||
31 | 这里有一个示意图,展示了如何将一个按钮连接到ProMicro的A3引脚上: | ||
32 | |||
33 |  | ||
34 | |||
35 | 在开关连接到各自的引脚后,在键盘下拉列表中选择所使用的MCU,将键码指定到对应的引脚上即可构建出固件。以下链接仅展示支持引脚直连的极简式制作: | ||
36 | |||
37 | * <https://config.qmk.fm/#/?filter=ez_maker/direct> | ||