keyboard layout for qmk firmware
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.

22 lines
412 B

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