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