LVGL在Arduino运行lv_example_img_2会编译报错:
sketch\LVGL_Arduino.ino.cpp.o:(.literal._Z16lv_example_img_2v+0x0): undefined reference to `img_cogwheel_argb’
collect2.exe: error: ld returned 1 exit status
exit status 1
因为Arduino使用的lvgl库的lvgl\src文件夹,而img_cogwheel_argb不在src文件夹在lvgl\examples\assets文件夹下,所以找不到
可以把assets文件夹复制到src文件夹下就可以了
对于使用转换工具转换的图片,也可以直接把生成的.C文件放入assets文件夹内就可以直接引用了