aboutsummaryrefslogtreecommitdiff
path: root/keyboards/anavi/macropad8/keymaps/git/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/anavi/macropad8/keymaps/git/keymap.c')
-rw-r--r--keyboards/anavi/macropad8/keymaps/git/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/anavi/macropad8/keymaps/git/keymap.c b/keyboards/anavi/macropad8/keymaps/git/keymap.c
index c1f1681ec..9b7afb5d6 100644
--- a/keyboards/anavi/macropad8/keymaps/git/keymap.c
+++ b/keyboards/anavi/macropad8/keymaps/git/keymap.c
@@ -105,7 +105,7 @@ oled_rotation_t oled_init_user(oled_rotation_t rotation) {
105 return OLED_ROTATION_180; // flips the display 180 degrees if offhand 105 return OLED_ROTATION_180; // flips the display 180 degrees if offhand
106} 106}
107 107
108void oled_task_user(void) { 108bool oled_task_user(void) {
109 // Host Keyboard Layer Status 109 // Host Keyboard Layer Status
110 oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false); 110 oled_write_ln_P(PSTR("ANAVI Macro Pad 8"), false);
111 oled_write_P(PSTR("Active layer: "), false); 111 oled_write_P(PSTR("Active layer: "), false);
@@ -140,5 +140,6 @@ void oled_task_user(void) {
140 snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val()); 140 snprintf(rgbStatusLine2, sizeof(rgbStatusLine2), "h:%d s:%d v:%d", rgblight_get_hue(), rgblight_get_sat(), rgblight_get_val());
141 oled_write_ln(rgbStatusLine2, false); 141 oled_write_ln(rgbStatusLine2, false);
142#endif 142#endif
143 return false;
143} 144}
144#endif 145#endif