Hi, I am testing Squareline Studio with a simple gui integration with Arduino and lvgl 8.3.11 and getting this error, (all widgets are enabled in the lvgl config, and I am used to using lvgl manually) I am getting an error in ui_helpers.h , it expects type lv_anim_enable_t but the code generates an int for the anm (animation ?) , void _ui_slider_increment(lv_obj_t * target, int val, int anm) , I probably could cast it like:
lv_bar_set_value(target, old + val, (lv_anim_enable_t) anm);
lv_slider_set_value(target, old + val, (lv_anim_enable_t) anm);
But I would not expect that from the generated code ?
Any help on what I am missing is greatly appreciated,
Thx,
Ives