- Added function to read out the display_buffer via USB-Serial - Added basic structure and files for later complete firmware (still in progress) - Added Doc folder with schematic in it - Added Python script and batch file to read out the display buffer and open the image in gimp
37 lines
1.4 KiB
C
37 lines
1.4 KiB
C
/*
|
|
* Display_Default_Configurations.h
|
|
*
|
|
* Created: Sun Jul 06 2025 15:51:51
|
|
* Author Chris
|
|
*/
|
|
#ifndef DISPLAY_DEFAULT_CONFIGURATIONS_H_
|
|
#define DISPLAY_DEFAULT_CONFIGURATIONS_H_
|
|
|
|
// ============================================================================================
|
|
// Includes
|
|
#include "Display_Objects_Datatypes.h"
|
|
|
|
|
|
// ============================================================================================
|
|
// Defines
|
|
#define SCREEN_TRANSITION_DEFAULT_EASING INOUT_SINE
|
|
#define SCREEN_TRANSITION_DEFAULT_FRAMES 15
|
|
|
|
|
|
// ============================================================================================
|
|
// Datatypes
|
|
extern Configuration_Menu_Select _Configuration_Default_Select_Menu;
|
|
extern Configuration_Select_YesNo _Configuration_Default_Select_YesNo;
|
|
extern Configuration_Select_List _Configuration_Default_Select_List;
|
|
extern Configuration_Select_Value _Configuration_Default_Select_Value;
|
|
extern Configuration_Select_RGB _Configuration_Default_Select_RGB;
|
|
extern Configuration_Select_RGB _Configuration_Compact_Select_RGB;
|
|
extern Configuration_Select_RGB _Configuration_High_Contrast_Select_RGB;
|
|
extern Configuration_Entry_Indicator _Configuration_Default_Entry_Indicator_Arc;
|
|
extern Configuration_Entry_Indicator _Configuration_Default_Entry_Indicator_Dot;
|
|
|
|
// ============================================================================================
|
|
// Function Declarations
|
|
|
|
#endif /* DISPLAY_DEFAULT_CONFIGURATIONS_H_ */
|