qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

reverb.c (411B)


      1 // Copyright 2023 Dasky (@daskygit)
      2 // SPDX-License-Identifier: GPL-2.0-or-later
      3 
      4 #include "quantum.h"
      5 #include "graphics/display.h"
      6 
      7 void keyboard_post_init_kb(void) {
      8     display_init_kb();
      9     keyboard_post_init_user();
     10 }
     11 
     12 bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
     13     if (record->event.pressed) {
     14         display_key_counter();
     15     }
     16     return process_record_user(keycode, record);
     17 }