qmk_firmware/keyboards/boardsource/equals/equals.c
cole smith 44062b5056
Bs equals (#21690)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: jack <0x6A73@pm.me>
2023-11-14 12:49:15 +11:00

18 lines
433 B
C

// Copyright 2023 @boardsource
// SPDX-License-Identifier: GPL-2.0-or-later
#include "quantum.h"
__attribute__((weak)) void ui_init(void) {};
__attribute__((weak)) void ui_task(void) {};
#ifdef QUANTUM_PAINTER_ENABLE
void keyboard_post_init_kb(void) {
// Init the display
ui_init();
keyboard_post_init_user();
}
void housekeeping_task_kb(void) {
// Draw the display
ui_task();
}
#endif //QUANTUM_PAINTER_ENABLE