blob: 19e5a5cfd5373329e0aad5c299dfc9fed0548c2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
|