[Core] Change OLED task function to be boolean (#14864)
* [Core] Add kb level callbacks to OLED driver * Update keyboards and keymaps * Update docs * Update userspace configs * Add fix for my keymap ... * update lefty
This commit is contained in:
parent
5dab3a7bc6
commit
44c20e7743
40 changed files with 104 additions and 57 deletions
|
|
@ -144,13 +144,14 @@ void render_mod_status(uint8_t modifiers) {
|
|||
oled_write_ln_P(PSTR("GUI"), (modifiers & MOD_MASK_GUI));
|
||||
}
|
||||
|
||||
void oled_task_user(void) {
|
||||
bool oled_task_user(void) {
|
||||
render_lechiffre_logo();
|
||||
oled_set_cursor(0,3);
|
||||
// render_layer_status(); // Renders the current keyboard state (layer, lock, caps, scroll, etc)
|
||||
render_mod_status(get_mods()|get_oneshot_mods());
|
||||
render_keylock_status(host_keyboard_led_state());
|
||||
render_keylogger_status();
|
||||
return false;
|
||||
}
|
||||
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue