forked from JonTheBurger/lvgl_sim_qt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13eeddc
commit c78ffd0
Showing
8 changed files
with
95 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "external/lvgl"] | ||
path = external/lvgl | ||
url = https://github.com/lvgl/lvgl.git | ||
[submodule "external/lv_examples"] | ||
path = external/lv_examples | ||
url = https://github.com/lvgl/lv_examples.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/** | ||
* @file lv_ex_conf.h | ||
* Configuration file for v7.4.0 | ||
* | ||
*/ | ||
/* | ||
* COPY THIS FILE AS lv_ex_conf.h | ||
*/ | ||
|
||
/** lvgl_sim_qt */ | ||
#if 1 /*Set it to "1" to enable the content*/ | ||
|
||
# ifndef LV_EX_CONF_H | ||
# define LV_EX_CONF_H | ||
|
||
/******************* | ||
* GENERAL SETTING | ||
*******************/ | ||
/** lvgl_sim_qt */ | ||
# define LV_EX_PRINTF 1 /*Enable printf-ing data in demoes and examples*/ | ||
# define LV_EX_KEYBOARD 0 /*Add PC keyboard support to some examples (`lv_drivers` repository is required)*/ | ||
# define LV_EX_MOUSEWHEEL 0 /*Add 'encoder' (mouse wheel) support to some examples (`lv_drivers` repository is required)*/ | ||
|
||
/********************* | ||
* DEMO USAGE | ||
*********************/ | ||
|
||
/*Show some widget*/ | ||
# define LV_USE_DEMO_WIDGETS 0 | ||
# if LV_USE_DEMO_WIDGETS | ||
# define LV_DEMO_WIDGETS_SLIDESHOW 0 | ||
# endif | ||
|
||
/*Printer demo, optimized for 800x480*/ | ||
#define LV_USE_DEMO_PRINTER 0 | ||
|
||
/*Demonstrate the usage of encoder and keyboard*/ | ||
#define LV_USE_DEMO_KEYPAD_AND_ENCODER 0 | ||
|
||
/*Benchmark your system*/ | ||
/** lvgl_sim_qt */ | ||
# define LV_USE_DEMO_BENCHMARK 1 | ||
|
||
/*Stress test for LVGL*/ | ||
# define LV_USE_DEMO_STRESS 0 | ||
|
||
# endif /*LV_EX_CONF_H*/ | ||
|
||
#endif /*End of "Content enable"*/ | ||
|
Submodule lv_examples
added at
56ce7e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.