diff options
Diffstat (limited to 'keyboards/helix/pico/split_util.h')
-rw-r--r-- | keyboards/helix/pico/split_util.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/helix/pico/split_util.h b/keyboards/helix/pico/split_util.h new file mode 100644 index 000000000..687ca19bd --- /dev/null +++ b/keyboards/helix/pico/split_util.h | |||
@@ -0,0 +1,19 @@ | |||
1 | #ifndef SPLIT_KEYBOARD_UTIL_H | ||
2 | #define SPLIT_KEYBOARD_UTIL_H | ||
3 | |||
4 | #include <stdbool.h> | ||
5 | #include "eeconfig.h" | ||
6 | |||
7 | #define SLAVE_I2C_ADDRESS 0x32 | ||
8 | |||
9 | extern volatile bool isLeftHand; | ||
10 | |||
11 | // slave version of matix scan, defined in matrix.c | ||
12 | void matrix_slave_scan(void); | ||
13 | |||
14 | void split_keyboard_setup(void); | ||
15 | bool has_usb(void); | ||
16 | |||
17 | void matrix_master_OLED_init (void); | ||
18 | |||
19 | #endif | ||