split_util.h 282 B

1234567891011121314151617
  1. #pragma once
  2. #include <stdbool.h>
  3. #include "eeconfig.h"
  4. #define SLAVE_I2C_ADDRESS 0x32
  5. extern volatile bool isLeftHand;
  6. extern volatile bool contacted_by_master;
  7. bool has_usb(void);
  8. // slave version of matix scan, defined in matrix.c
  9. void matrix_slave_scan(void);