mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-22 19:39:27 +00:00
c97ec805cd
* initial unsplit keyboard * move shared code * unsplit: fix underglow led x,y & remove unecessary code * unsplit: remove split code & tidy readme * unsplit: limit brightness & community layout * rename keyboard * the_q: tidy keymap & readme * lulu: remove accidental build target * rename file
26 lines
548 B
C
26 lines
548 B
C
// Copyright 2024 jack (@waffle87)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#include "quantum.h"
|
|
#include "lib/oled.h"
|
|
|
|
#ifdef OLED_ENABLE
|
|
oled_rotation_t oled_init_kb(oled_rotation_t rotation) {
|
|
if (!is_keyboard_master()) {
|
|
return OLED_ROTATION_180;
|
|
}
|
|
return rotation;
|
|
}
|
|
|
|
bool oled_task_kb(void) {
|
|
if (!oled_task_user()) {
|
|
return false;
|
|
}
|
|
if (is_keyboard_master()) {
|
|
render_layer_state();
|
|
} else {
|
|
oled_write_raw_P(bs_logo_img, sizeof(bs_logo_img));
|
|
}
|
|
return false;
|
|
}
|
|
#endif
|