diff options
author | keyhive <42986966+keyhive@users.noreply.github.com> | 2019-05-05 23:01:43 -0600 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-05-05 22:01:43 -0700 |
commit | fbc40032e73ee80db961c3930a2b5d84ffd51a6f (patch) | |
tree | 931a62cb78ec30a6218007c2937030e17273e4b8 /keyboards/ut472/ut472.h | |
parent | e96d196dc985072a30cdc5a520c37e9533894cbf (diff) | |
download | qmk_firmware-fbc40032e73ee80db961c3930a2b5d84ffd51a6f.tar.gz qmk_firmware-fbc40032e73ee80db961c3930a2b5d84ffd51a6f.zip |
[Keyboard] add ut47.2 (#5788)
* adding ut47.2
adding ut47.2
* Update keyboards/ut472/ut472.c
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/rules.mk
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/ut472.c
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/rules.mk
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* changed shift enter special keys to KC_SFTENT
changed shift enter special keys to KC_SFTENT
* Update keyboards/ut472/ut472.h
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/ut472.h
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/ut472.h
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/readme.md
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/readme.md
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* updated for sourcing
updated for sourcing
* Update keyboards/ut472/readme.md
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* changed flash to make
changed flash to make
Diffstat (limited to 'keyboards/ut472/ut472.h')
-rw-r--r-- | keyboards/ut472/ut472.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/keyboards/ut472/ut472.h b/keyboards/ut472/ut472.h new file mode 100644 index 000000000..1068dd704 --- /dev/null +++ b/keyboards/ut472/ut472.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /* Copyright 2018 Carlos Filoteo | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #include "quantum.h" | ||
20 | |||
21 | #define LAYOUT( \ | ||
22 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0a, K0b, \ | ||
23 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1a, K1b, \ | ||
24 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2a, K2b, \ | ||
25 | K30, K31, K32, K33, K34, K35, K37, K38, K39, K3a, K3b \ | ||
26 | ) \ | ||
27 | { \ | ||
28 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0a, K0b }, \ | ||
29 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1a, K1b }, \ | ||
30 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2a, K2b }, \ | ||
31 | { K30, K31, K32, K33, K34, K35, K35, K37, K38, K39, K3a, K3b } \ | ||
32 | } | ||
33 | |||
34 | |||