hadron.c 555 B

1234567891011121314151617181920212223242526
  1. #include "hadron.h"
  2. void matrix_init_kb(void) {
  3. matrix_init_user();
  4. }
  5. void matrix_scan_kb(void) {
  6. // put your looping keyboard code here
  7. // runs every cycle (a lot)
  8. matrix_scan_user();
  9. }
  10. bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
  11. // put your per-action keyboard code here
  12. // runs for every action, just before processing by the firmware
  13. return process_record_user(keycode, record);
  14. }
  15. void led_set_kb(uint8_t usb_led) {
  16. // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
  17. led_set_user(usb_led);
  18. }