How to create a VU Meter

What is the best possible solution to create a VU meter in SLS 1.3.0? I think LVGL does have a Meter function, but right now it does not seem to be implemented in SLS.

Hi,

A meter would be a really great candidate for it, but as you mentioned it not availalble in SLS yet.

As workaround you can create a Panel as a placeholder in SLS, and create the meter from code after calling ui_init(). E.g.

ui_init()
lv_obj_t * meter = lv_meter_create(ui_Panel_Placeholder);