]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/readme.md
92792fb97a8e2f0e25849d2a934246b44f82c00e
[qmk_firmware.git] / users / drashna / readme.md
1 Overview
2 ========
3
4 This is my personal userspace file.  Most of my code exists here, as it's heavily shared. 
5
6
7 Custom userspace handlers
8 -------------------------
9
10 Specifically QMK works by using customized handlers for everything. This allows for multiple levels of customization.
11
12 `matrix_scan` calls `matrix_scan_quantum`, which alls `matrix_scan_kb`, which calls `matrix_scan_user`. 
13 `process_record` calls a bunch of stuff, but eventually calls `process_record_kb` which calls `process_record_user`
14 The same goes for `matrix_init`, `layer_state_set`, `led_set`, and a few other functions.  
15
16 All (most) `_user` functions are handled here instead.  To allow keyboard specific configuration, I've created `_keymap` functions that can be called by the keymap.c files instead.
17
18 This allows for keyboard specific configuration while maintaining the ability to customize the board. 
19
20 My [Ergodox EZ Keymap](https://github.com/qmk/qmk_firmware/blob/master/keyboards/ergodox_ez/keymaps/drashna/keymap.c#L399) is a good example of this, as it uses the LEDs as modifier indicators.
21
22
23 Keyboard Layout Templates
24 -------------------------
25
26 This borrows from @jola5's "Not quite neo" code.  This allows me to maintain blocks of keymaps in the userspace, so that I can modify the userspace, and this is reflected in all of the keyboards that use it, at once. 
27
28 This makes adding tap/hold mods, or other special keycodes or functions to all keyboards super easy, as it's done to all of them at once. 
29
30 The caveat here is that the keymap needs a processor/wrapper, as it doesn't like the substitutions.  However, this is as simple as just pushing it through a define. For instance: 
31
32 `#define LAYOUT_ergodox_wrapper(...)   LAYOUT_ergodox(__VA_ARGS__)`
33
34 Once that's been done and you've switched the keymaps to use the "wrapper", it will read the substitution blocks just fine. 
35
36 Credit goes to @jola5 for first implementing this awesome idea.
37
38
39 Custom Keycodes
40 ---------------
41
42 Keycodes are defined in the drashna.h file and need to be included in the keymap.c files, so that they can be used there. 
43
44 A bunch of macros are present and are only included on boards that are not the Ergodox EZ or Orthodox, as they are not needed for those boards. 
45
46 Included is a custom macro for compiling my keyboards.  This includes the bootloader target (`:teensy`, `:avrdude`, or `:dfu`), and keeps RGBLIGHT, AUDIO and/or FAUXCLICKY enabled, if it previously was (regardless of the rules file).
47
48 This also includes a modified RESET keycode as well, that sets the underglow to red. 
49
50 Layer Indication
51 ----------------
52
53 This uses the `layer_state_set_*` command to change the layer color, to indicate which layer it is on.  This includes the default keymap, as well.
54
55 Since this is done via userspace, it is the same between all systems. 
56
57 Additionally, there is a custom keycode to toggle layer indication. And all RGB keycodes disable layer indication by default, as well.  This way, I can leave special effects doing when I want.
58
59 Also. I use `rgblight_sethsv` since it works with animation modes (that support it).
60
61
62 Diablo Layer
63 ------------
64
65 This layer has some special handling.
66
67 When Tap Dances are enabled, this layer has the ability to "spam" keypresses.  
68
69 For instance, tapping the TD "1" twice causes the layer to hit "1" ever 1 second (appoximately).  This is useful for auto-hotkeying skills (such as bone armor or devour).
70
71 Tappind once disables this, and switching layers temporarily disables this, until you switch back to the layer. 
72
73 For critics that think this is cheating, search "diablo 3 num lock auto cast".  This is just a simpler method, since I no longer own a normal (non QMK) numpad. 
74
75 Secret Macros
76 -------------
77
78 With help from gitter and Colinta, this adds the ability to add hidden strings to be used for macros.
79
80 I have a number of long strings that I need to use that are semi-private.  This uses the `__has_include` function to check for the file. If it exists, then it includes the custom text. Otherwise, it uses some default values. 
81
82 If you would *also* like to take advantage of this feature, you'll first want to make sure your "secrets" file isn't included in the repo.  Open `.git/info/exclude` and add `secrets.h` to that file, below the comments.
83
84 ###### .git/info/exclude
85 ```
86 # git ls-files --others --exclude-from=.git/info/exclude
87 # Lines that start with '#' are comments.
88 # For a project mostly in C, the following would be a good set of
89 # exclude patterns (uncomment them if you want to use them):
90 # *.[oa]
91 # *~
92 /users/drashna/secrets.h
93 ```
94
95 Then you can create this file and add your macro strings to it:
96
97 ###### secrets.h
98 ```
99 PROGMEM const char secret[][64] = {
100   "secret1",
101   "secret2",
102   "secret3",
103   "secret4",
104   "secret5"
105 };
106 ```
107
108 Replacing the strings with the codes that you need. 
109
110
111 These are called in the `process_record_user` function, using this block:
112 ```
113   case KC_SECRET_1 ... KC_SECRET_5:
114     if (!record->event.pressed) {
115       send_string_P(secret[keycode - KC_SECRET_1]);
116     }
117     return false;
118     break;
119 ```
120
121 And this requires `KC_SECRET_1` through `KC_SECRET_5` to be defined, as well.