aboutsummaryrefslogtreecommitdiff
path: root/keyboards/helix/pico/pico.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/helix/pico/pico.h')
-rw-r--r--keyboards/helix/pico/pico.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/keyboards/helix/pico/pico.h b/keyboards/helix/pico/pico.h
new file mode 100644
index 000000000..a3d658daa
--- /dev/null
+++ b/keyboards/helix/pico/pico.h
@@ -0,0 +1,65 @@
1#ifndef PICO_H
2#define PICO_CONFIG_H
3
4#include "../helix.h"
5
6//void promicro_bootloader_jmp(bool program);
7#include "quantum.h"
8
9#ifdef RGBLIGHT_ENABLE
10//rgb led driver
11#include "ws2812.h"
12#endif
13
14#ifdef USE_I2C
15#include <stddef.h>
16#ifdef __AVR__
17 #include <avr/io.h>
18 #include <avr/interrupt.h>
19#endif
20#endif
21
22//void promicro_bootloader_jmp(bool program);
23
24
25#ifndef FLIP_HALF
26// Standard Keymap
27// (TRRS jack on the left half is to the right, TRRS jack on the right half is to the left)
28#define LAYOUT( \
29 L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \
30 L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \
31 L20, L21, L22, L23, L24, L25, R20, R21, R22, R23, R24, R25, \
32 L30, L31, L32, L33, L34, L35, L36, R36, R30, R31, R32, R33, R34, R35 \
33 ) \
34 { \
35 { L00, L01, L02, L03, L04, L05, KC_NO }, \
36 { L10, L11, L12, L13, L14, L15, KC_NO }, \
37 { L20, L21, L22, L23, L24, L25, KC_NO }, \
38 { L30, L31, L32, L33, L34, L35, L36 }, \
39 { R05, R04, R03, R02, R01, R00, KC_NO }, \
40 { R15, R14, R13, R12, R11, R10, KC_NO }, \
41 { R25, R24, R23, R22, R21, R20, KC_NO }, \
42 { R35, R34, R33, R32, R31, R30, R36 }, \
43 }
44#else
45// Keymap with right side flipped
46// (TRRS jack on both halves are to the right)
47#define LAYOUT( \
48 L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, \
49 L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, \
50 L20, L21, L22, L23, L24, L25, R20, R21, R22, R23, R24, R25, \
51 L30, L31, L32, L33, L34, L35, L36, R36, R30, R31, R32, R33, R34, R35 \
52 ) \
53 { \
54 { L00, L01, L02, L03, L04, L05, KC_NO }, \
55 { L10, L11, L12, L13, L14, L15, KC_NO }, \
56 { L20, L21, L22, L23, L24, L25, KC_NO }, \
57 { L30, L31, L32, L33, L34, L35, L36 }, \
58 { KC_NO, R00, R01, R02, R03, R04, R05 }, \
59 { KC_NO, R10, R11, R12, R13, R14, R15 }, \
60 { KC_NO, R20, R21, R22, R23, R24, R25 }, \
61 { R36, R30, R31, R32, R33, R34, R35 }, \
62 }
63#endif
64
65#endif