aboutsummaryrefslogtreecommitdiff
path: root/keyboards/evyd13/atom47/rev2/rev2.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/evyd13/atom47/rev2/rev2.h')
-rw-r--r--keyboards/evyd13/atom47/rev2/rev2.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/keyboards/evyd13/atom47/rev2/rev2.h b/keyboards/evyd13/atom47/rev2/rev2.h
new file mode 100644
index 000000000..bfea34e06
--- /dev/null
+++ b/keyboards/evyd13/atom47/rev2/rev2.h
@@ -0,0 +1,25 @@
1#ifndef ATOM47_H
2#define ATOM47_H
3
4#include "quantum.h"
5
6// readability
7#define XXX KC_NO
8
9#define LAYOUT( \
10 k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, \
11 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1c, \
12 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2c, \
13 k30, k31, k32, k33, k34, k36, k38, k39, k3a, k3c \
14) \
15{ \
16 {k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c}, \
17 {k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, XXX, k1c}, \
18 {k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, XXX, k2c}, \
19 {k30, k31, k32, k33, k34, XXX, k36, XXX, k38, k39, k3a, XXX, k3c} \
20}
21
22void matrix_init_user(void);
23void matrix_scan_user(void);
24
25#endif