aboutsummaryrefslogtreecommitdiff
path: root/keyboards/anavi/macropad8/keymaps/obs/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/anavi/macropad8/keymaps/obs/keymap.c')
-rw-r--r--keyboards/anavi/macropad8/keymaps/obs/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/anavi/macropad8/keymaps/obs/keymap.c b/keyboards/anavi/macropad8/keymaps/obs/keymap.c
index e740482bb..1d9fd38ee 100644
--- a/keyboards/anavi/macropad8/keymaps/obs/keymap.c
+++ b/keyboards/anavi/macropad8/keymaps/obs/keymap.c
@@ -58,7 +58,7 @@ oled_rotation_t oled_init_user(oled_rotation_t rotation) {
58 return OLED_ROTATION_180; // flips the display 180 degrees if offhand 58 return OLED_ROTATION_180; // flips the display 180 degrees if offhand
59} 59}
60 60
61void oled_task_user(void) { 61bool oled_task_user(void) {
62 // Host Keyboard Layer Status 62 // Host Keyboard Layer Status
63 oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false); 63 oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
64 oled_write_P(PSTR("Active layer: "), false); 64 oled_write_P(PSTR("Active layer: "), false);
@@ -93,5 +93,6 @@ void oled_task_user(void) {
93 snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val()); 93 snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
94 oled_write_ln(rgbStatusLine2, false); 94 oled_write_ln(rgbStatusLine2, false);
95#endif 95#endif
96 return false;
96} 97}
97#endif 98#endif