aboutsummaryrefslogtreecommitdiff
path: root/keyboards/rgbkb/zen/rev1/rev1.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/rgbkb/zen/rev1/rev1.h')
-rw-r--r--keyboards/rgbkb/zen/rev1/rev1.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/keyboards/rgbkb/zen/rev1/rev1.h b/keyboards/rgbkb/zen/rev1/rev1.h
new file mode 100644
index 000000000..a12f2ea78
--- /dev/null
+++ b/keyboards/rgbkb/zen/rev1/rev1.h
@@ -0,0 +1,37 @@
1#pragma once
2
3#include "zen.h"
4
5//void promicro_bootloader_jmp(bool program);
6#include "quantum.h"
7
8
9#ifdef USE_I2C
10#include <stddef.h>
11#ifdef __AVR__
12 #include <avr/io.h>
13 #include <avr/interrupt.h>
14#endif
15#endif
16
17//void promicro_bootloader_jmp(bool program);
18
19#define LAYOUT( \
20 k00, k01, k02, k03, k04, k05, k55, k54, k53, k52, k51, k50, \
21 k10, k11, k12, k13, k14, k15, k65, k64, k63, k62, k61, k60, \
22 k20, k21, k22, k23, k24, k25, k75, k74, k73, k72, k71, k70, \
23 k30, k31, k32, k33, k34, k35, k85, k84, k83, k82, k81, k80, \
24 k40, k41, k42, k43, k44, k45, k46, k96, k95, k94, k93, k92, k91, k90 \
25 ) \
26 { \
27 { k00, k01, k02, k03, k04, k05, KC_NO }, \
28 { k10, k11, k12, k13, k14, k15, KC_NO }, \
29 { k20, k21, k22, k23, k24, k25, KC_NO }, \
30 { k30, k31, k32, k33, k34, k35, KC_NO }, \
31 { k40, k41, k42, k43, k44, k45, k46 }, \
32 { k50, k51, k52, k53, k54, k55, KC_NO }, \
33 { k60, k61, k62, k63, k64, k65, KC_NO }, \
34 { k70, k71, k72, k73, k74, k75, KC_NO }, \
35 { k80, k81, k82, k83, k84, k85, KC_NO }, \
36 { k90, k91, k92, k93, k94, k95, k96 } \
37 }