summaryrefslogtreecommitdiff
path: root/keyboards/boardsource/the_q/the_q.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/boardsource/the_q/the_q.c')
-rw-r--r--keyboards/boardsource/the_q/the_q.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/boardsource/the_q/the_q.c b/keyboards/boardsource/the_q/the_q.c
new file mode 100644
index 0000000000..0929456911
--- /dev/null
+++ b/keyboards/boardsource/the_q/the_q.c
@@ -0,0 +1,14 @@
+// Copyright 2024 jack (@waffle87)
+// SPDX-License-Identifier: GPL-2.0-or-later
+#include "quantum.h"
+#include "lib/oled.h"
+
+#ifdef OLED_ENABLE
+bool oled_task_kb(void) {
+ if (!oled_task_user()) {
+ return false;
+ }
+ render_layer_state();
+ return false;
+}
+#endif