diff options
Diffstat (limited to 'quantum/visualizer/lcd_keyframes.c')
| -rw-r--r-- | quantum/visualizer/lcd_keyframes.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/quantum/visualizer/lcd_keyframes.c b/quantum/visualizer/lcd_keyframes.c index 00d9734e6..74f6e3b47 100644 --- a/quantum/visualizer/lcd_keyframes.c +++ b/quantum/visualizer/lcd_keyframes.c | |||
| @@ -158,3 +158,17 @@ bool lcd_keyframe_display_layer_and_led_states(keyframe_animation_t* animation, | |||
| 158 | gdispFlush(); | 158 | gdispFlush(); |
| 159 | return false; | 159 | return false; |
| 160 | } | 160 | } |
| 161 | |||
| 162 | bool lcd_keyframe_disable(keyframe_animation_t* animation, visualizer_state_t* state) { | ||
| 163 | (void)animation; | ||
| 164 | (void)state; | ||
| 165 | gdispSetPowerMode(powerOff); | ||
| 166 | return false; | ||
| 167 | } | ||
| 168 | |||
| 169 | bool lcd_keyframe_enable(keyframe_animation_t* animation, visualizer_state_t* state) { | ||
| 170 | (void)animation; | ||
| 171 | (void)state; | ||
| 172 | gdispSetPowerMode(powerOn); | ||
| 173 | return false; | ||
| 174 | } | ||
