From fdd9acdae514a3e0e4a7153225053680744980e5 Mon Sep 17 00:00:00 2001 From: Louis Orleans Date: Mon, 11 Sep 2017 22:45:55 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Messing=20around=20with=20LCD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- keyboards/ergodox_infinity/visualizer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/keyboards/ergodox_infinity/visualizer.c b/keyboards/ergodox_infinity/visualizer.c index 4b16021abcd..f2ece68e31e 100644 --- a/keyboards/ergodox_infinity/visualizer.c +++ b/keyboards/ergodox_infinity/visualizer.c @@ -33,8 +33,8 @@ along with this program. If not, see . #include "system/serial_link.h" #include "default_animations.h" -static const uint32_t logo_background_color = LCD_COLOR(0x00, 0x00, 0xFF); -static const uint32_t initial_color = LCD_COLOR(0, 0, 0); +static const uint32_t logo_background_color = LCD_COLOR(0x00, 0x00, 0x00); +static const uint32_t initial_color = LCD_COLOR(0x7F, 0xFF, 0xFF); static const uint32_t led_emulation_colors[4] = { LCD_COLOR(0, 0, 0), @@ -116,7 +116,7 @@ static keyframe_animation_t lcd_bitmap_leds_animation = { void initialize_user_visualizer(visualizer_state_t* state) { // The brightness will be dynamically adjustable in the future // But for now, change it here. - lcd_backlight_brightness(130); + lcd_backlight_brightness(180); state->current_lcd_color = initial_color; state->target_lcd_color = logo_background_color; lcd_state = LCD_STATE_INITIAL;