diff options
author | Christian Sandven <christian.sandven@kindly.ai> | 2022-01-29 04:28:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 19:28:00 -0800 |
commit | 1af65a22487927f667e8d193dd893a9c8d9cdf38 (patch) | |
tree | f480a10642874537c842e04637dc4d1c1c5898b8 /keyboards/keyprez/unicorn/unicorn.h | |
parent | b2fcc923cb212bb118a080fc5046ae70d50a8cc5 (diff) |
[Keyboard] Add keyprez unicorn (#15998)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Diffstat (limited to 'keyboards/keyprez/unicorn/unicorn.h')
-rw-r--r-- | keyboards/keyprez/unicorn/unicorn.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/keyboards/keyprez/unicorn/unicorn.h b/keyboards/keyprez/unicorn/unicorn.h new file mode 100644 index 0000000000..5eb036f50a --- /dev/null +++ b/keyboards/keyprez/unicorn/unicorn.h @@ -0,0 +1,36 @@ +// Copyright 2022 Keyprez (https://github.com/keyprez) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "quantum.h" + +/* This is a shortcut to help you visually see your layout. + * + * The first section contains all of the arguments representing the physical + * layout of the board and position of the keys. + * + * The second converts the arguments into a two-dimensional array which + * represents the switch matrix. + */ +#define LAYOUT( \ + LA1, LA2, LA3, LA4, LA5, LA6, LA7, RA1, RA2, RA3, RA4, RA5, RA6, RA7, RA8, RA9, \ + LB1, LB2, LB3, LB4, LB5, LB6, RB1, RB2, RB3, RB4, RB5, RB6, RB7, RB8, RB9, \ + LC1, LC2, LC3, LC4, LC5, LC6, RC1, RC2, RC3, RC4, RC5, RC6, RC7, RC8, RC9, RC10, \ + LD1, LD2, LD3, LD4, LD5, LD6, LD7, RD1, RD2, RD3, RD4, RD5, RD6, RD7, RD8, RD9, \ + LE1, LE2, LE3, LE5, LE6, RE1, RE2, RE3, RE4, RE5, RE6, RE7, RE8 \ + ) \ + { \ + { LA1, LA2, LA3, LA4, LA5, LA6, LA7, KC_NO }, \ + { LB1, LB2, LB3, LB4, LB5, LB6, KC_NO, KC_NO }, \ + { LC1, LC2, LC3, LC4, LC5, LC6, KC_NO, KC_NO }, \ + { LD1, LD2, LD3, LD4, LD5, LD6, LD7, KC_NO }, \ + { LE1, LE2, LE3, KC_NO, LE5, LE6, KC_NO, KC_NO }, \ + { KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO }, \ + { RA1, RA2, RA3, RA4, RA5, RA6, RA7, RA8 }, \ + { RB1, RB2, RB3, RB4, RB5, RB6, RB7, KC_NO }, \ + { RC1, RC2, RC3, RC4, RC5, RC6, RC7, RC8 }, \ + { RD1, RD2, RD3, RD4, RD5, RD6, RD7, RD8 }, \ + { RE1, RE2, RE3, RE4, RE5, RE6, RE7, RE8 }, \ + { KC_NO, KC_NO, RA9, RB9, RB8, RC10, RC9, RD9 } \ + } |