- Inside your Arduino sketch, create a
src
folder. - Copy the LVGL Editor project folder into this
src
folder. - Update all includes:
// Before
#include "lvgl/lvgl.h"
// After
#include "lvgl.h"
- For screens, widgets, and components, make sure
ui.h
is included using relative paths. For example:
#include "../ui.h"
⚠️ Note: You will need to update steps 3 and 4 each time you regenerate your project, as these changes will be overwritten.