bool keyframe_enable_lcd_and_backlight(keyframe_animation_t* animation, visualizer_state_t* state) { (void)animation; (void)state; #ifdef LCD_ENABLE gdispSetPowerMode(powerOn); #endif return false; }
bool keyframe_disable_lcd_and_backlight(keyframe_animation_t* animation, visualizer_state_t* state) { (void)animation; (void)state; #ifdef LCD_ENABLE gdispSetPowerMode(powerOff); #endif #ifdef LCD_BACKLIGHT_ENABLE lcd_backlight_hal_color(0, 0, 0); #endif return false; }
bool lcd_keyframe_enable(keyframe_animation_t* animation, visualizer_state_t* state) { (void)animation; (void)state; gdispSetPowerMode(powerOn); return false; }