aboutsummaryrefslogtreecommitdiff
path: root/keyboards/technika/technika.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/technika/technika.h')
-rw-r--r--keyboards/technika/technika.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/keyboards/technika/technika.h b/keyboards/technika/technika.h
new file mode 100644
index 000000000..9bae89813
--- /dev/null
+++ b/keyboards/technika/technika.h
@@ -0,0 +1,34 @@
1/*
2Copyright 2015 Álvaro "Gondolindrim" Volpato <gondolindrim@acheronproject.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#define ___ KC_NO
21
22#include "quantum.h"
23
24#define LAYOUT( \
25 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
26 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \
27 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, \
28 K30, K31, K32, K33, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D \
29) { \
30 { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D}, \
31 { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D}, \
32 { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D}, \
33 { K30, K31, K32, K33, ___, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D} \
34}