LVGL Editor Arduino Sample

Setup Instructions

  1. Inside your Arduino sketch, create a src folder.
  2. Copy the LVGL Editor project folder into this src folder.
  3. Update all includes:
// Before
#include "lvgl/lvgl.h"

// After
#include "lvgl.h"
  1. 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.