lv_binding_rust icon indicating copy to clipboard operation
lv_binding_rust copied to clipboard

LVGL bindings for Rust. A powerful and easy-to-use embedded GUI with many widgets, advanced visual effects (opacity, antialiasing, animations) and low memory requirements (16K RAM, 64K Flash).

Results 63 lv_binding_rust issues
Sort by recently updated
recently updated
newest added

This PR will be perma-draft until LVGL 9.0 is stable and the branch will serve to keep us up to date with LVGL 9.0-dev so the transition will be as...

enhancement
breaking

Hi, I'm trying to use the latest version of the repo that uses `embedded-graphics` version 0.8.0. The crates.io version of `lvgl` (version 0.6.2) seems to be using `embedded-graphics` version 0.7.1...

It seems that the build process just tries to build any discovered C files in the project directory ? or instance, here it finds our json library and fails to...

Hello, widgets have lifetime ```rust impl pub fn create(parent: &mut impl NativeObject) -> LvResult ``` Which takes reference to some `NativeObject` and returns `Bar` with [unbounded lifetime](https://doc.rust-lang.org/nomicon/unbounded-lifetimes.html) - it can...

Hi, here is what I did ``` $ git clone https://github.com/lvgl/lv_binding_rust $ cd lv_binding_rust $ . ~/export-esp.sh $ export DEP_LV_CONFIG_PATH=~/lv_binding_rust/examples/include $ cargo check ``` ``` error: failed to run custom...

## Delete Target specification [This part of the code](https://github.com/rust-lang/rust-bindgen/blob/main/bindgen/lib.rs#L748) tells us that calling bingen in the build script will automatically check TARGET and generate the corresponding clang_args without us having...

Fix compile errors to build examples/demo.rs.

In the process of running sample. I fail on Master, while they works on tags/0.6.2. ``` Compiling lvgl v0.6.2 (/home/fulup/Workspace/Tux-Evse/lv_binding_rust/lvgl) error[E0277]: the `?` operator can only be applied to values...

bug
question

By default, GCC targeting embedded platform enables the ```-fshort-enums``` flag which dynamically sizes enums based on the greatest value the enum contains. This results in enums being represented by 1/2/3...

The `..._get_text` functions on `Label` and `Textarea` don't seem to be available currently. I can get text by calling the C function in an `unsafe` block like this: ``` let...