summaryrefslogtreecommitdiff
path: root/keyboards/vinhcatba/uncertainty/uncertainty.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/vinhcatba/uncertainty/uncertainty.c')
-rw-r--r--keyboards/vinhcatba/uncertainty/uncertainty.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/keyboards/vinhcatba/uncertainty/uncertainty.c b/keyboards/vinhcatba/uncertainty/uncertainty.c
new file mode 100644
index 0000000000..19e5a5cfd5
--- /dev/null
+++ b/keyboards/vinhcatba/uncertainty/uncertainty.c
@@ -0,0 +1,32 @@
+// Copyright 2023 Vinh Le (@vinhcatba)
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include QMK_KEYBOARD_H
+#include "quantum.h"
+
+#ifdef OLED_ENABLE
+#include "bongo.h"
+// Used to draw on to the oled screen
+bool oled_minimal = true;
+bool oled_task_kb(void) {
+ if(!oled_task_user()) { return false; }
+ draw_bongo(oled_minimal);
+ return false;
+}
+
+bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
+ if (!process_record_user(keycode, record)) {
+ return false;
+ }
+
+ switch (keycode) {
+ case OLED_TOG:
+ if (record->event.pressed) {
+ oled_minimal = !oled_minimal;
+ }
+ return false;
+ default:
+ return true;
+ }
+}
+#endif // endif OLED_ENABLE