standaside.c 385 B

1234567891011121314
  1. #include "standaside.h"
  2. bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
  3. // put your per-action keyboard code here
  4. // runs for every action, just before processing by the firmware
  5. return process_record_user(keycode, record);
  6. }
  7. void led_set_kb(uint8_t usb_led) {
  8. // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
  9. led_set_user(usb_led);
  10. }