lvgl / lv_binding_micropython

LVGL binding for MicroPython
MIT License
237 stars 156 forks source link

lv_meter_t is not exposed to MicroPython #259

Closed kdschlosser closed 1 year ago

kdschlosser commented 1 year ago

as the title states the lv_meter_t structure is not exposed to MicroPython. The rest of the structures for the meter are exposed.

amirgon commented 1 year ago

No LVGL API function is receiving lv_meter_t, therefore it is not considered part of the API and not exposed by the bindings.
Why do you need it?

kdschlosser commented 1 year ago

Nothing I needed in the structure. I just went and looked at the code I noticed that everything in the structure is able to be changed by use of functions. I just noticed that it was not exposed like a lot of the other structures are and thought it worth mentioning. I understand why it is not exposed at this point. Sorry for opening an issue on this. I pulled the trigger on it before I dove into seeing what is going on in the code.