diff options
author | Peter Park <peterchpark@gmail.com> | 2021-10-16 19:22:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-16 19:22:35 -0700 |
commit | 772f67484f49a48b7b408a4128006aa022b45cf0 (patch) | |
tree | a4a2b48fd6506edb656bdf6c407946b3429709fe /keyboards/the_uni/pro_micro/pro_micro.h | |
parent | 3c0eeec755882f606fa9175677bd4d3d20082c07 (diff) | |
download | qmk_firmware-772f67484f49a48b7b408a4128006aa022b45cf0.tar.gz qmk_firmware-772f67484f49a48b7b408a4128006aa022b45cf0.zip |
[Keyboard] Update Support for The Uni (#14569)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: ridingqwerty <george.g.koenig@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Peter Park <peter@Peters-MacBook-Air.local>
Diffstat (limited to 'keyboards/the_uni/pro_micro/pro_micro.h')
-rw-r--r-- | keyboards/the_uni/pro_micro/pro_micro.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/the_uni/pro_micro/pro_micro.h b/keyboards/the_uni/pro_micro/pro_micro.h new file mode 100644 index 000000000..9371c3a24 --- /dev/null +++ b/keyboards/the_uni/pro_micro/pro_micro.h | |||
@@ -0,0 +1,30 @@ | |||
1 | /* | ||
2 | Copyright 2021 Peter C. Park <peter@stenokeyboards.com> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "quantum.h" | ||
21 | |||
22 | #define LAYOUT( \ | ||
23 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, \ | ||
24 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, \ | ||
25 | K202, K203, K204, K205, K206, K207 \ | ||
26 | ) { \ | ||
27 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010 }, \ | ||
28 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110 }, \ | ||
29 | { KC_NO, KC_NO, K202, K203, K204, K205, K206, K207, KC_NO, KC_NO, KC_NO } \ | ||
30 | } | ||