- Added bunch of screens, fonts and images - Added script to read out frame buffer (function currently disabled in Firmware)
28 lines
1.0 KiB
C
28 lines
1.0 KiB
C
/*
|
|
* Screen_Variables.c
|
|
*
|
|
* Created: Fri Apr 02 2021 13:46:29
|
|
* Author Chris
|
|
*/
|
|
|
|
// ============================================================================================
|
|
// Includes
|
|
#include "Screens.h"
|
|
#include "pico/types.h"
|
|
|
|
|
|
// ============================================================================================
|
|
// Variables
|
|
void (*_Screen_Last)(Screen_Transition_Direction direction_out, Screen_Transition_Direction direction_in, Easing type, uint32_t frame_duration);
|
|
void (*_Screen_Tick)(void);
|
|
void (*_Screen_Click)(uint button_return_value);
|
|
void (*_Screen_Touch_Event)(int16_t x, int16_t y);
|
|
void (*_Screen_Action_CW)(Object_ID object_id);
|
|
void (*_Screen_Action_CCW)(Object_ID object_id);
|
|
void (*_Screen_On_Objects_Focused)(Object_ID object_id);
|
|
void (*_Screen_On_Objects_Defocused)(Object_ID object_id);
|
|
void (*_Screen_On_Object_Select)(Object_ID object_id);
|
|
void (*_Screen_On_Object_Deselect)(Object_ID object_id);
|
|
|
|
bool _Screen_Idle_Active = false;
|
|
bool _Screen_Idle_Counter_Disable = false; |