the_q.c 279 B

1234567891011121314
  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