diff options
Diffstat (limited to 'keyboards/ergodox/infinity/visualizer.c')
-rw-r--r-- | keyboards/ergodox/infinity/visualizer.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/keyboards/ergodox/infinity/visualizer.c b/keyboards/ergodox/infinity/visualizer.c index bbed4e989..8e684d991 100644 --- a/keyboards/ergodox/infinity/visualizer.c +++ b/keyboards/ergodox/infinity/visualizer.c | |||
@@ -186,22 +186,24 @@ static keyframe_animation_t lcd_bitmap_leds_animation = { | |||
186 | }; | 186 | }; |
187 | 187 | ||
188 | static keyframe_animation_t suspend_animation = { | 188 | static keyframe_animation_t suspend_animation = { |
189 | .num_frames = 3, | 189 | .num_frames = 4, |
190 | .loop = false, | 190 | .loop = false, |
191 | .frame_lengths = {0, gfxMillisecondsToTicks(1000), 0}, | 191 | .frame_lengths = {0, gfxMillisecondsToTicks(1000), 0, 0}, |
192 | .frame_functions = { | 192 | .frame_functions = { |
193 | lcd_keyframe_display_layer_text, | 193 | lcd_keyframe_display_layer_text, |
194 | backlight_keyframe_animate_color, | 194 | backlight_keyframe_animate_color, |
195 | keyframe_disable_lcd_and_backlight, | 195 | lcd_keyframe_disable, |
196 | lcd_keyframe_disable, | ||
196 | }, | 197 | }, |
197 | }; | 198 | }; |
198 | 199 | ||
199 | static keyframe_animation_t resume_animation = { | 200 | static keyframe_animation_t resume_animation = { |
200 | .num_frames = 4, | 201 | .num_frames = 5, |
201 | .loop = false, | 202 | .loop = false, |
202 | .frame_lengths = {0, 0, gfxMillisecondsToTicks(10000), 0}, | 203 | .frame_lengths = {0, 0, 0, gfxMillisecondsToTicks(10000), 0}, |
203 | .frame_functions = { | 204 | .frame_functions = { |
204 | keyframe_enable_lcd_and_backlight, | 205 | lcd_keyframe_enable, |
206 | backlight_keyframe_enable, | ||
205 | display_logo, | 207 | display_logo, |
206 | backlight_keyframe_animate_color, | 208 | backlight_keyframe_animate_color, |
207 | enable_visualization, | 209 | enable_visualization, |