You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
395 B

  1. #ifndef SPLIT_KEYBOARD_UTIL_H
  2. #define SPLIT_KEYBOARD_UTIL_H
  3. #include <stdbool.h>
  4. #include "eeconfig.h"
  5. #define SLAVE_I2C_ADDRESS 0x32
  6. extern volatile bool isLeftHand;
  7. // slave version of matix scan, defined in matrix.c
  8. void matrix_slave_scan(void);
  9. void split_keyboard_setup(void);
  10. bool has_usb(void);
  11. void keyboard_slave_loop(void);
  12. void matrix_master_OLED_init (void);
  13. #endif