mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-21 06:53:01 +08:00
15 lines
336 B
C
15 lines
336 B
C
|
#include "../../lv_examples.h"
|
||
|
#if LV_USE_SJPG && LV_BUILD_EXAMPLES
|
||
|
|
||
|
void lv_example_sjpg_1(void)
|
||
|
{
|
||
|
lv_obj_t * wp;
|
||
|
|
||
|
wp = lv_img_create(lv_scr_act());
|
||
|
/* Assuming a File system is attached to letter 'A'
|
||
|
* E.g. set LV_USE_FS_STDIO 'A' in lv_conf.h */
|
||
|
lv_img_set_src(wp, "A:lvgl/examples/libs/sjpg/small_image.sjpg");
|
||
|
}
|
||
|
|
||
|
#endif
|