logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

the_q.c (279B)


  1. // Copyright 2024 jack (@waffle87)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "quantum.h"
  4. #include "lib/oled.h"
  5. #ifdef OLED_ENABLE
  6. bool oled_task_kb(void) {
  7. if (!oled_task_user()) {
  8. return false;
  9. }
  10. render_layer_state();
  11. return false;
  12. }
  13. #endif