aboutsummaryrefslogtreecommitdiff
path: root/keyboards/minim/minim.h
diff options
context:
space:
mode:
authorMatthew Dias <matthewdias@me.com>2020-11-25 10:57:58 -0600
committerGitHub <noreply@github.com>2020-11-25 08:57:58 -0800
commit24a741649d898d2bd84a581646d11e4e3a3b4f91 (patch)
tree51b0935b9e0a16b1c5d041a8f87810226ec1cebd /keyboards/minim/minim.h
parent0a9476bc2afbe19caef4429a3a9b6e18e006d07e (diff)
downloadqmk_firmware-24a741649d898d2bd84a581646d11e4e3a3b4f91.tar.gz
qmk_firmware-24a741649d898d2bd84a581646d11e4e3a3b4f91.zip
[Keyboard] Add minim keyboard (#10970)
* Create minim firmware * Cleanup and add configurator support * PR Checklist Items * Delete keymap.c * Apply suggestions from code review Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Joel Challis <git@zvecr.com>
Diffstat (limited to 'keyboards/minim/minim.h')
-rw-r--r--keyboards/minim/minim.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/keyboards/minim/minim.h b/keyboards/minim/minim.h
new file mode 100644
index 000000000..7a732a8ab
--- /dev/null
+++ b/keyboards/minim/minim.h
@@ -0,0 +1,33 @@
1/*
2Copyright 2020 Matthew Dias <matthewdias@me.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along 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 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
24 K10, K11, K12, K13, K14, K15, K16, K18, K19, K1A, K1B, K1C, K1D, \
25 K20, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, \
26 K31, K32, K34, K37, K39, K3B, K3C \
27) \
28{ \
29 { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \
30 { K10, K11, K12, K13, K14, K15, K16, KC_NO, K18, K19, K1A, K1B, K1C, K1D }, \
31 { K20, KC_NO, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, KC_NO, K2D }, \
32 { KC_NO, K31, K32, KC_NO, K34, KC_NO, KC_NO, K37, KC_NO, K39, KC_NO, K3B, K3C, KC_NO } \
33}