s65_x.c 422 B

123456789101112131415161718
  1. #include "s65_x.h"
  2. void matrix_init_kb(void) {
  3. // put your keyboard start-up code here
  4. // runs once when the firmware starts up
  5. matrix_init_user();
  6. };
  7. void matrix_scan_kb(void) {
  8. // put your looping keyboard code here
  9. // runs every cycle (a lot)
  10. matrix_scan_user();
  11. };
  12. void led_set_kb(uint8_t usb_led) {
  13. // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
  14. led_set_user(usb_led);
  15. }