aboutsummaryrefslogtreecommitdiff
path: root/keyboards/acheron/elongate/elongate.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/acheron/elongate/elongate.h')
-rw-r--r--keyboards/acheron/elongate/elongate.h31
1 files changed, 6 insertions, 25 deletions
diff --git a/keyboards/acheron/elongate/elongate.h b/keyboards/acheron/elongate/elongate.h
index 6ff32b4f7..2e5887164 100644
--- a/keyboards/acheron/elongate/elongate.h
+++ b/keyboards/acheron/elongate/elongate.h
@@ -1,4 +1,4 @@
1/* Copyright 2020 Gondolindrim 1/* Copyright 2020-2022 Gondolindrim
2 * 2 *
3 * This program is free software: you can redistribute it and/or modify 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 4 * it under the terms of the GNU General Public License as published by
@@ -18,27 +18,8 @@
18 18
19#include "quantum.h" 19#include "quantum.h"
20 20
21/* This is a shortcut to help you visually see your layout. 21#if defined(KEYBOARD_acheron_elongate_beta)
22 * 22 #include "beta.h"
23 * The first section contains all of the arguments representing the physical 23#elif defined(KEYBOARD_acheron_elongate_delta)
24 * layout of the board and position of the Keys. 24 #include "delta.h"
25 * 25#endif
26 * The second converts the arguments into a two-dimensional array which
27 * represents the switch matrix.
28 */
29
30#define KNO KC_NO
31
32#define LAYOUT( \
33 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K49, K41, \
34 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1B, K1C, K4A, K42, \
35 K20, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K4B, K44, \
36 K30, K31, K32, K34, K37, K3A, K3B, K3C, K3D, K4C, K47 \
37)\
38{\
39 { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C }, \
40 { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, KNO, K1B, K1C }, \
41 { K20, KNO, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C }, \
42 { K30, K31, K32, KNO, K34, KNO, KNO, K37, KNO, K3A, K3B, K3C, K3D }, \
43 { KNO, K41, K42, KNO, K44, KNO, KNO, K47, KNO, K49, K4A, K4B, K4C } \
44}