diff options
| author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2021-01-22 18:02:40 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-22 18:02:40 -0800 |
| commit | 3a7573436ae6ab20973389a4051a8785399539f2 (patch) | |
| tree | 4e9d11ac68e0744269495f7fae243eb46f120d54 /keyboards/program_yoink/program_yoink.h | |
| parent | 7e77c2361fbfba60fabb490a8dae310d5b7309ba (diff) | |
| download | qmk_firmware-3a7573436ae6ab20973389a4051a8785399539f2.tar.gz qmk_firmware-3a7573436ae6ab20973389a4051a8785399539f2.zip | |
Program Yoink! refactor (#11636)
* split config.h for each variant
* split rules.mk for each variant
* split source and header files for each variant
* move keymaps to the appropriate variant
* update keyboard readme
* update keymap readmes
* differentiate Staggered and Ortho USB Device Strings
* clean up formatting in info.json
* split info.json files for each variant
* break up the info.json for readability
* correct key positioning and board dimensions
* correct key object sequences
* add weak encoder function to keyboard level
Allows Configurator-compiled firmware to have encoder functionality.
* add variant-specific readme files and bootloader instructions
Diffstat (limited to 'keyboards/program_yoink/program_yoink.h')
| -rw-r--r-- | keyboards/program_yoink/program_yoink.h | 69 |
1 files changed, 5 insertions, 64 deletions
diff --git a/keyboards/program_yoink/program_yoink.h b/keyboards/program_yoink/program_yoink.h index 5aca12c26..d6a1d33b5 100644 --- a/keyboards/program_yoink/program_yoink.h +++ b/keyboards/program_yoink/program_yoink.h | |||
| @@ -18,67 +18,8 @@ | |||
| 18 | 18 | ||
| 19 | #include "quantum.h" | 19 | #include "quantum.h" |
| 20 | 20 | ||
| 21 | /* This is a shortcut to help you visually see your layout. | 21 | #if defined(KEYBOARD_program_yoink_staggered) |
| 22 | * | 22 | #include "staggered.h" |
| 23 | * The first section contains all of the arguments representing the physical | 23 | #elif defined(KEYBOARD_program_yoink_ortho) |
| 24 | * layout of the board and position of the keys. | 24 | #include "ortho.h" |
| 25 | * | 25 | #endif |
| 26 | * The second converts the arguments into a two-dimensional array which | ||
| 27 | * represents the switch matrix. | ||
| 28 | */ | ||
| 29 | #define XXX KC_NO | ||
| 30 | |||
| 31 | #define LAYOUT_default( \ | ||
| 32 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, \ | ||
| 33 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1C, \ | ||
| 34 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2C, \ | ||
| 35 | K30, K31, K34, K38, K39, K3A, K3C \ | ||
| 36 | ) \ | ||
| 37 | { \ | ||
| 38 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C }, \ | ||
| 39 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, XXX, K1C }, \ | ||
| 40 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, XXX, K2C }, \ | ||
| 41 | { K30, K31, XXX, XXX, K34, XXX, XXX, XXX, K38, K39, K3A, XXX, K3C } \ | ||
| 42 | } | ||
| 43 | |||
| 44 | #define LAYOUT_split_bar( \ | ||
| 45 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, \ | ||
| 46 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1C, \ | ||
| 47 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2C, \ | ||
| 48 | K30, K31, K32, K33, K35, K37, K38, K39, K3A, K3C \ | ||
| 49 | ) \ | ||
| 50 | { \ | ||
| 51 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C }, \ | ||
| 52 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, XXX, K1C }, \ | ||
| 53 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, XXX, K2C }, \ | ||
| 54 | { K30, K31, K32, K33, XXX, K35, XXX, K37, K38, K39, K3A, XXX, K3C } \ | ||
| 55 | } | ||
| 56 | |||
| 57 | #define LAYOUT_ortho( \ | ||
| 58 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, \ | ||
| 59 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, \ | ||
| 60 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \ | ||
| 61 | K30, K31, K35, K39, K3A, K3B, K3C \ | ||
| 62 | ) \ | ||
| 63 | { \ | ||
| 64 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C }, \ | ||
| 65 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C }, \ | ||
| 66 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C }, \ | ||
| 67 | { K30, K31, XXX, XXX, XXX, K35, XXX, XXX, XXX, K39, K3A, K3B, K3C } \ | ||
| 68 | } | ||
| 69 | |||
| 70 | #define LAYOUT_ortho_split( \ | ||
| 71 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, \ | ||
| 72 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, \ | ||
| 73 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \ | ||
| 74 | K30, K31, K32, K34, K36, K38, K39, K3A, K3B, K3C \ | ||
| 75 | ) \ | ||
| 76 | { \ | ||
| 77 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C }, \ | ||
| 78 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C }, \ | ||
| 79 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C }, \ | ||
| 80 | { K30, K31, K32, XXX, K34, XXX, K36, XXX, K38, K39, K3A, K3B, K3C } \ | ||
| 81 | } | ||
| 82 | |||
| 83 | |||
| 84 | |||
