clueboard1.c 336 B

1234567891011121314151617181920212223
  1. #include "clueboard1.h"
  2. __attribute__ ((weak))
  3. void matrix_init_user(void) {
  4. // leave these blank
  5. }
  6. __attribute__ ((weak))
  7. void matrix_scan_user(void) {
  8. // leave these blank
  9. }
  10. void matrix_init_kb(void) {
  11. #ifdef RGBLIGHT_ENABLE
  12. rgblight_init();
  13. #endif
  14. matrix_init_user();
  15. }
  16. void matrix_scan_kb(void) {
  17. matrix_scan_user();
  18. }