|
1 |
| - |
2 |
| - |
3 |
| - Name | Description |
4 |
| ---------------|-------------------- |
5 |
| -`NO` | Do nothing |
6 |
| -`TRANSPARENT` | Use the key of next active layer |
| 1 | +| Name | Description | |
| 2 | +| ------------- | -------------------------------- | |
| 3 | +| `NO` | Do nothing | |
| 4 | +| `TRANSPARENT` | Use the key of next active layer | |
7 | 5 |
|
8 | 6 | ## Bluetooth
|
9 | 7 |
|
10 |
| - Name | Description |
11 |
| ---------------|------------------- |
12 |
| -`BT0` ~ `BT9` | Switch to Bluetooth ID n (0 - 9) |
13 |
| -`BT_TOGGLE` | Toggle Bluetooth |
| 8 | +| Name | Description | |
| 9 | +| ------------- | -------------------------------- | |
| 10 | +| `BT0` ~ `BT9` | Switch to Bluetooth ID n (0 - 9) | |
| 11 | +| `BT_TOGGLE` | Toggle Bluetooth | |
14 | 12 |
|
15 | 13 | ## USB
|
16 | 14 |
|
17 |
| - Name | Description |
18 |
| ---------------|------------------- |
19 |
| -`USB_TOGGLE` | Toggle USB |
| 15 | +| Name | Description | |
| 16 | +| ------------ | ----------- | |
| 17 | +| `USB_TOGGLE` | Toggle USB | |
20 | 18 |
|
21 |
| -!!! note |
22 |
| - When connecting the keyboard to a computer via USB, USB will be enabled automatically. |
23 |
| - When both USB and Bluetooth are enabled, USB will be used. |
| 19 | +**Note: When connecting the keyboard to a computer via USB, USB will be enabled automatically. When both USB and Bluetooth are enabled, USB will be used.** |
24 | 20 |
|
25 | 21 | ## System
|
26 | 22 |
|
27 |
| - Name | Description |
28 |
| ---------------|----------------------------------------- |
29 |
| -`BOOTLOADER` | Enter the bootloader of the keyboard |
30 |
| -`HEATMAP` | Generate heatmap (todo) |
31 |
| -`SUSPEND` | Suspend. To wake up keyboard, just press any key |
32 |
| -`SHUTDOWN` | Shutdown. Use ON/OFF button to power on the keyboard |
| 23 | +| Name | Description | |
| 24 | +| ------------ | ---------------------------------------------------- | |
| 25 | +| `BOOTLOADER` | Enter the bootloader of the keyboard | |
| 26 | +| `HEATMAP` | Generate heatmap (todo) | |
| 27 | +| `SUSPEND` | Suspend. To wake up keyboard, just press any key | |
| 28 | +| `SHUTDOWN` | Shutdown. Use ON/OFF button to power on the keyboard | |
33 | 29 |
|
34 | 30 | ## Layer & Modifier
|
35 | 31 |
|
36 |
| -+ `MODS_KEY(mods, key)` sends one or more modifier(s) + a normal key. `MODS()` is used to wrap modifiers. |
| 32 | +- `MODS_KEY(mods, key)` sends one or more modifier(s) + a normal key. `MODS()` is used to wrap modifiers. |
37 | 33 |
|
38 | 34 | `MODS_KEY(MODS(LCTRL), C)`, `MODS_KEY(MODS(LCTRL, LSHIFT), C)`, `MODS_KEY(MODS(LCTRL, LSHIFT, LALT), C)`
|
39 | 35 |
|
40 |
| -+ `LAYER_TOGGLE(n)` toggles layer `n` |
| 36 | +- `LAYER_TOGGLE(n)` toggles layer `n` |
41 | 37 |
|
42 |
| -+ `MACRO(n)` creates macro `n` |
| 38 | +- `MACRO(n)` creates macro `n` |
43 | 39 |
|
44 | 40 | ### TAP-Key
|
45 | 41 |
|
46 |
| -`TAP-Key` has 2 modes - tap (press and release quickly) and hold (long press) |
| 42 | +A `TAP-Key` has 2 modes - tap (press and release quickly) and hold (long press) |
47 | 43 |
|
48 |
| -+ `LAYER_TAP(n, key)` tap - outputs `key`, hold - turns on layer n momentary |
| 44 | +- `LAYER_TAP(n, key)` tap - outputs `key`, hold - turns on layer n momentary |
49 | 45 |
|
50 |
| -+ `LAYER_TAP_TOGGLE(n)` tap - toggles layer n, hold - turns on layer n momentary |
| 46 | +- `LAYER_TAP_TOGGLE(n)` tap - toggles layer n, hold - turns on layer n momentary |
51 | 47 |
|
52 |
| -+ `LAYER_MODS(n, mods)` tap - outputs specified modifier(s), hold - turns on layer n momentary |
| 48 | +- `LAYER_MODS(n, mods)` tap - outputs specified modifier(s), hold - turns on layer n momentary |
53 | 49 |
|
54 | 50 | `LAYER_MODS(1, MODS(LCTRL))`, `LAYER_MODS(1, MODS(LCTRL, LSHIFT))`
|
55 | 51 |
|
56 |
| -+ `MODS_TAP(mods, key)` tap - outputs `key`, hold - outputs specified modifier(s) |
| 52 | +- `MODS_TAP(mods, key)` tap - outputs `key`, hold - outputs specified modifier(s) |
57 | 53 |
|
58 | 54 | `MODS_TAP(MODS(LCTRL), ';')`, `MODS_TAP(MODS(LCTRL, LALT), LEFT)`
|
59 | 55 |
|
60 |
| - |
61 | 56 | ## APP & Media
|
62 | 57 |
|
63 | 58 | ```
|
@@ -298,4 +293,3 @@ SHIFT
|
298 | 293 | ALT
|
299 | 294 | GUI
|
300 | 295 | ```
|
301 |
| - |
0 commit comments