]> git.donarmstrong.com Git - qmk_firmware.git/blob - docs/feature_macros.md
add example keymap
[qmk_firmware.git] / docs / feature_macros.md
1 # Macros
2
3 Macros allow you to send multiple keystrokes when pressing just one key. QMK has a number of ways to define and use macros. These can do anything you want: type common phrases for you, copypasta, repetitive game movements, or even help you code. 
4
5 {% hint style='danger' %}
6 **Security Note**: While it is possible to use macros to send passwords, credit card numbers, and other sensitive information it is a supremely bad idea to do so. Anyone who gets ahold of your keyboard will be able to access that information by opening a text editor.
7 {% endhint %}
8
9 ## The new way: `SEND_STRING()` & `process_record_user`
10
11 Sometimes you just want a key to type out words or phrases. For the most common situations we've provided `SEND_STRING()`, which will type out your string (i.e. a sequence of characters) for you. All ASCII characters that are easily translated to a keycode are supported (e.g. `\n\t`).
12
13 Here is an example `keymap.c` for a two-key keyboard:
14
15 ```c
16 enum custom_keycodes {
17         MY_CUSTOM_MACRO = SAFE_RANGE
18 };
19
20 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
21         if (record->event.pressed) {
22                 switch(keycode) {
23                         case MY_CUSTOM_MACRO:
24                                 SEND_STRING("QMK is the best thing ever!"); // this is our macro!
25                                 return false; break;
26                 }
27         }
28         return true;
29 };
30
31 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
32         [0] = {
33           {MY_CUSTOM_MACRO, KC_ESC}
34         }
35 };
36 ```
37
38 What happens here is this:
39 We first define a new custom keycode in the range not occupied by any other keycodes.
40 Then we use the `process_record_user` function, which is called whenever a key is pressed or released, to check if our custom keycode has been activated.
41 If yes, we send the string `"QMK is the best thing ever!"` to the computer via the `SEND_STRING` macro (this is a C preprocessor macro, not to be confused with QMK macros).
42 We return `false` to indicate to the caller that the key press we just processed need not be processed any further.
43 Finally, we define the keymap so that the first button activates our macro and the second button is just an escape button.
44
45 You might want to add more than one macro.
46 You can do that by adding another keycode and adding another case to the switch statement, like so:
47
48 ```c
49 enum custom_keycodes {
50         MY_CUSTOM_MACRO = SAFE_RANGE,
51         MY_OTHER_MACRO
52 };
53
54 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
55         if (record->event.pressed) {
56                 switch(keycode) {
57                         case MY_CUSTOM_MACRO:
58                                 SEND_STRING("QMK is the best thing ever!");
59                                 return false; break;
60                         case MY_OTHER_MACRO:
61                                 SEND_STRING(SS_LCTRL("ac")); // selects all and copies
62                                 return false; break;
63                 }
64         }
65         return true;
66 };
67
68 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
69         [0] = {
70           {MY_CUSTOM_MACRO, MY_OTHER_MACRO}
71         }
72 };
73 ```
74
75 ### TAP, DOWN and UP
76
77 You may want to use keys in your macros that you can't write down, such as `Ctrl` or `Home`.
78 You can send arbitary keycodes by wrapping them in:
79
80 * `SS_TAP()` presses and releases a key.
81 * `SS_DOWN()` presses (but does not release) a key.
82 * `SS_UP()` releases a key.
83
84 For example:
85
86     SEND_STRING(SS_TAP(X_HOME));
87
88 Would tap `KC_HOME` - note how the prefix is now `X_`, and not `KC_`. You can also combine this with other strings, like this:
89
90     SEND_STRING("VE"SS_TAP(X_HOME)"LO");
91
92 Which would send "VE" followed by a `KC_HOME` tap, and "LO" (spelling "LOVE" if on a newline).
93
94 There's also a couple of mod shortcuts you can use:
95
96 * `SS_LCTRL(string)`
97 * `SS_LGUI(string)`
98 * `SS_LALT(string)`
99
100 These press the respective modifier, send the supplied string and then release the modifier.
101 They can be used like this:
102
103     SEND_STRING(SS_LCTRL("a"));
104
105 Which would send LCTRL+a (LCTRL down, a, LCTRL up) - notice that they take strings (eg `"k"`), and not the `X_K` keycodes.
106
107 ### Alternative keymaps
108
109 By default, it assumes a US keymap with a QWERTY layout; if you want to change that (e.g. if your OS uses software Colemak), include this somewhere in your keymap:
110
111     #include <sendstring_colemak.h>
112
113 ### Strings in memory
114
115 If for some reason you're manipulating strings and need to print out something you just generated (instead of being a literal, constant string), you can use `send_string()`, like this:
116
117 ```c
118 char my_str[4] = "ok.";
119 send_string(my_str);
120 ```
121
122 The shortcuts defined above won't work with `send_string()`, but you can separate things out to different lines if needed:
123
124 ```c
125 char my_str[4] = "ok.";
126 SEND_STRING("I said: ");
127 send_string(my_str);
128 SEND_STRING(".."SS_TAP(X_END));
129 ```
130
131 ## The old way: `MACRO()` & `action_get_macro`
132
133 {% hint style='info' %}
134 This is inherited from TMK, and hasn't been updated - it's recommend that you use `SEND_STRING` and `process_record_user` instead.
135 {% endhint %}
136
137 By default QMK assumes you don't have any macros. To define your macros you create an `action_get_macro()` function. For example:
138
139 ```c
140 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
141         if (record->event.pressed) {
142                 switch(id) {
143                         case 0:
144                                 return MACRO(D(LSFT), T(H), U(LSFT), T(I), D(LSFT), T(1), U(LSFT), END);
145                         case 1:
146                                 return MACRO(D(LSFT), T(B), U(LSFT), T(Y), T(E), D(LSFT), T(1), U(LSFT), END);
147                 }
148         }
149         return MACRO_NONE;
150 };
151 ```
152
153 This defines two macros which will be run when the key they are assigned to is pressed. If instead you'd like them to run when the key is released you can change the if statement:
154
155         if (!record->event.pressed) {
156
157 ### Macro Commands
158
159 A macro can include the following commands:
160
161 * I() change interval of stroke in milliseconds.
162 * D() press key.
163 * U() release key.
164 * T() type key(press and release).
165 * W() wait (milliseconds).
166 * END end mark.
167
168 ### Mapping a Macro to a key
169
170 Use the `M()` function within your `KEYMAP()` to call a macro. For example, here is the keymap for a 2-key keyboard:
171
172 ```c
173 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
174         [0] = KEYMAP(
175                 M(0), M(1)
176         ),
177 };
178
179 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
180         if (record->event.pressed) {
181                 switch(id) {
182                         case 0:
183                                 return MACRO(D(LSFT), T(H), U(LSFT), T(I), D(LSFT), T(1), U(LSFT), END);
184                         case 1:
185                                 return MACRO(D(LSFT), T(B), U(LSFT), T(Y), T(E), D(LSFT), T(1), U(LSFT), END);
186                 }
187         }
188         return MACRO_NONE;
189 };
190 ```
191
192 When you press the key on the left it will type "Hi!" and when you press the key on the right it will type "Bye!".
193
194 ### Naming your macros
195
196 If you have a bunch of macros you want to refer to from your keymap while keeping the keymap easily readable you can name them using `#define` at the top of your file.
197
198 ```c
199 #define M_HI M(0)
200 #define M_BYE M(1)
201
202 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
203         [0] = KEYMAP(
204                 M_HI, M_BYE
205         ),
206 };
207 ```
208
209 ## Advanced macro functions
210
211 There are some functions you may find useful in macro-writing. Keep in mind that while you can write some fairly advanced code within a macro if your functionality gets too complex you may want to define a custom keycode instead. Macros are meant to be simple.
212
213 ### `record->event.pressed`
214
215 This is a boolean value that can be tested to see if the switch is being pressed or released. An example of this is
216
217 ```c
218         if (record->event.pressed) {
219                 // on keydown
220         } else {
221                 // on keyup
222         }
223 ```
224
225 ### `register_code(<kc>);`
226
227 This sends the `<kc>` keydown event to the computer. Some examples would be `KC_ESC`, `KC_C`, `KC_4`, and even modifiers such as `KC_LSFT` and `KC_LGUI`.
228
229 ### `unregister_code(<kc>);`
230
231 Parallel to `register_code` function, this sends the `<kc>` keyup event to the computer. If you don't use this, the key will be held down until it's sent.
232
233 ### `clear_keyboard();`
234
235 This will clear all mods and keys currently pressed.
236
237 ### `clear_mods();`
238
239 This will clear all mods currently pressed.
240
241 ### `clear_keyboard_but_mods();`
242
243 This will clear all keys besides the mods currently pressed.
244
245 ## Advanced Example: Single-key copy/paste
246
247 This example defines a macro which sends `Ctrl-C` when pressed down, and `Ctrl-V` when released. 
248
249 ```c
250 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
251         switch(id) {
252                 case 0: {
253                         if (record->event.pressed) {
254                                 return MACRO( D(LCTL), T(C), U(LCTL), END  );
255                         } else {
256                                 return MACRO( D(LCTL), T(V), U(LCTL), END  );
257                         }
258                         break;
259                 }
260         }
261         return MACRO_NONE;
262 };
263 ```
264
265