diff options
author | Jarred Steenvoorden <jazzjarred@gmail.com> | 2019-07-23 17:07:57 +1000 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-07-23 00:07:57 -0700 |
commit | 7ec583e5efb276ce90a40a1df985de7d0d0b8f46 (patch) | |
tree | fb71b4879be3f9ec4c7efc0c5240f078890144f2 /layouts/community/ortho_4x12/jarred | |
parent | c966da89da613fe6f2f28cc23e4acbb1f43559aa (diff) | |
download | qmk_firmware-7ec583e5efb276ce90a40a1df985de7d0d0b8f46.tar.gz qmk_firmware-7ec583e5efb276ce90a40a1df985de7d0d0b8f46.zip |
[Keymap] Jarred's Plaid keymap (#6049)
* Add my plaid keymap
* Move planck / plaid keymaps to common layout folder
Diffstat (limited to 'layouts/community/ortho_4x12/jarred')
-rw-r--r-- | layouts/community/ortho_4x12/jarred/keymap.c | 22 | ||||
-rw-r--r-- | layouts/community/ortho_4x12/jarred/readme.md | 22 |
2 files changed, 44 insertions, 0 deletions
diff --git a/layouts/community/ortho_4x12/jarred/keymap.c b/layouts/community/ortho_4x12/jarred/keymap.c new file mode 100644 index 000000000..4be5f9ed6 --- /dev/null +++ b/layouts/community/ortho_4x12/jarred/keymap.c | |||
@@ -0,0 +1,22 @@ | |||
1 | #include QMK_KEYBOARD_H | ||
2 | #include "jarred.h" | ||
3 | |||
4 | #define LAYOUT_ortho_4x12_wrapper(...) LAYOUT_ortho_4x12(__VA_ARGS__) | ||
5 | |||
6 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
7 | [_QW] = LAYOUT_ortho_4x12_wrapper(QWERTY_4x12), | ||
8 | [_GAME] = LAYOUT_ortho_4x12_wrapper(GAME_4x12), | ||
9 | [_LW] = LAYOUT_ortho_4x12_wrapper(LOWER_4x12), | ||
10 | [_NV] = LAYOUT_ortho_4x12_wrapper(NAV_4x12), | ||
11 | [_NP] = LAYOUT_ortho_4x12_wrapper(NUMPAD_4x12), | ||
12 | [_MS] = LAYOUT_ortho_4x12_wrapper(MOUSE_4x12) | ||
13 | }; | ||
14 | |||
15 | #ifdef RGB_MATRIX_ENABLE | ||
16 | void rgb_matrix_indicators_user(void) { | ||
17 | #ifdef KEYBOARD_planck_light | ||
18 | // Disable light in middle of 2U position of Planck Light | ||
19 | rgb_matrix_set_color(42, 0, 0, 0); | ||
20 | #endif | ||
21 | } | ||
22 | #endif | ||
diff --git a/layouts/community/ortho_4x12/jarred/readme.md b/layouts/community/ortho_4x12/jarred/readme.md new file mode 100644 index 000000000..05f1ff086 --- /dev/null +++ b/layouts/community/ortho_4x12/jarred/readme.md | |||
@@ -0,0 +1,22 @@ | |||
1 | # Jarred's ortho 4x12 keymap | ||
2 | |||
3 | [User space](../../../../users/jarred/readme.md) | ||
4 | |||
5 | Boards used on: | ||
6 | - [Planck](../../../../keyboards/planck/readme.md) | ||
7 | - [Plaid](../../../../keyboards/plaid/readme.md) | ||
8 | |||
9 | # Plaid build notes | ||
10 | |||
11 | Enter Bootloader: | ||
12 | Press Reset / Press Boot / Release Reset / Release Boot | ||
13 | |||
14 | Install libusbK driver for usbasp: | ||
15 | https://zadig.akeo.ie/ | ||
16 | |||
17 | make plaid:jarred:program | ||
18 | |||
19 | Press Reset | ||
20 | |||
21 | https://github.com/hsgw/plaid/blob/master/doc/en/bootloader.md | ||
22 | https://github.com/hsgw/plaid/blob/master/doc/en/firmware.md | ||