aboutsummaryrefslogtreecommitdiff
path: root/keyboards/draculad/draculad.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/draculad/draculad.h')
-rw-r--r--keyboards/draculad/draculad.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/keyboards/draculad/draculad.h b/keyboards/draculad/draculad.h
new file mode 100644
index 000000000..b98bb0d2c
--- /dev/null
+++ b/keyboards/draculad/draculad.h
@@ -0,0 +1,40 @@
1/*
2Copyright 2021 @mangoiv
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 XXX KC_NO
23
24#define LAYOUT( \
25 L00, L01, L02, L03, L04, R00, R01, R02, R03, R04, \
26 L10, L11, L12, L13, L14, R10, R11, R12, R13, R14, \
27 L20, L21, L22, L23, L24, R20, R21, R22, R23, R24, \
28 L30, R33, \
29 L31, L32, L33, R30, R31, R32 \
30 ) \
31 { \
32 { L00, L01, L02, L03, L04 }, \
33 { L10, L11, L12, L13, L14 }, \
34 { L20, L21, L22, L23, L24 }, \
35 { XXX, L30, L31, L32, L33 }, \
36 { R04, R03, R02, R01, R00 }, \
37 { R14, R13, R12, R11, R10 }, \
38 { R24, R23, R22, R21, R20 }, \
39 { XXX, R33, R32, R31, R30 } \
40 }