logo

qmk_firmware

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

v4.c (381B)


  1. // Copyright 2022 Vitaly Volkov (@vlkv)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "quantum.h"
  4. #ifdef OLED_ENABLE
  5. oled_rotation_t oled_init_kb(oled_rotation_t rotation) {
  6. return OLED_ROTATION_180;
  7. }
  8. bool oled_task_kb(void) {
  9. if (!oled_task_user()) {
  10. return false;
  11. }
  12. oled_write_P(PSTR("Avalanche\nVersion 4"), false);
  13. return true;
  14. }
  15. #endif