You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
376 B
C
18 lines
376 B
C
#include "../../lv_examples.h"
|
|
#if LV_USE_SJPG && LV_BUILD_EXAMPLES
|
|
|
|
/**
|
|
* Load an SJPG image
|
|
*/
|
|
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
|