diff options
| author | Nick Brassel <nick@tzarc.org> | 2022-11-05 23:22:11 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-05 23:22:11 +1100 |
| commit | 4d33f356a62c195f5498ed2fe8dd3ea434d5a689 (patch) | |
| tree | 9e9c99d43512b2890836facfd8ae4e447dfa5810 /docs/ChangeLog | |
| parent | fe00c8021192c43e27e5a91a5193d7fbe07b9fa8 (diff) | |
Macro keycode name refactoring (#18958)
Diffstat (limited to 'docs/ChangeLog')
| -rw-r--r-- | docs/ChangeLog/20211127.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/ChangeLog/20211127.md b/docs/ChangeLog/20211127.md index d954bb9f61..0780ab6a44 100644 --- a/docs/ChangeLog/20211127.md +++ b/docs/ChangeLog/20211127.md | |||
| @@ -56,19 +56,19 @@ You can now define up to 32 macros in your `keymap.json` file, as used by [QMK C | |||
| 56 | "keyboard": "handwired/my_macropad", | 56 | "keyboard": "handwired/my_macropad", |
| 57 | "keymap": "my_keymap", | 57 | "keymap": "my_keymap", |
| 58 | "macros": [ | 58 | "macros": [ |
| 59 | [ // first listed is MACRO_0... | 59 | [ // first listed is QK_MACRO_0... |
| 60 | {"action":"down", "keycodes": ["LSFT"]}, | 60 | {"action":"down", "keycodes": ["LSFT"]}, |
| 61 | "hello world1", | 61 | "hello world1", |
| 62 | {"action": "up","keycodes": ["LSFT"]} | 62 | {"action": "up","keycodes": ["LSFT"]} |
| 63 | ], | 63 | ], |
| 64 | [ // ...then MACRO_1... | 64 | [ // ...then QK_MACRO_1... |
| 65 | {"action":"tap", "keycodes": ["LCTL", "LALT", "DEL"]} | 65 | {"action":"tap", "keycodes": ["LCTL", "LALT", "DEL"]} |
| 66 | ], | 66 | ], |
| 67 | [ // ...then MACRO_2... | 67 | [ // ...then QK_MACRO_2... |
| 68 | "ding!", | 68 | "ding!", |
| 69 | {"action":"beep"} | 69 | {"action":"beep"} |
| 70 | ], | 70 | ], |
| 71 | [ // ...and MACRO_3. | 71 | [ // ...and QK_MACRO_3. |
| 72 | {"action":"tap", "keycodes": ["F1"]}, | 72 | {"action":"tap", "keycodes": ["F1"]}, |
| 73 | {"action":"delay", "duration": "1000"}, | 73 | {"action":"delay", "duration": "1000"}, |
| 74 | {"action":"tap", "keycodes": ["PGDN"]} | 74 | {"action":"tap", "keycodes": ["PGDN"]} |
| @@ -76,7 +76,7 @@ You can now define up to 32 macros in your `keymap.json` file, as used by [QMK C | |||
| 76 | ], | 76 | ], |
| 77 | "layout": "LAYOUT_all", | 77 | "layout": "LAYOUT_all", |
| 78 | "layers": [ | 78 | "layers": [ |
| 79 | ["MACRO_0", "MACRO_1", "MACRO_2", "MACRO_3"] | 79 | ["QK_MACRO_0", "QK_MACRO_1", "QK_MACRO_2", "QK_MACRO_3"] |
| 80 | ] | 80 | ] |
| 81 | } | 81 | } |
| 82 | ``` | 82 | ``` |
