LittlevGL 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).
Go to file
2020-05-30 17:19:30 +02:00
examples/demo Update code snippet picture in readme 2020-05-30 09:32:27 +02:00
lvgl Version 0.2.0 2020-05-30 17:19:30 +02:00
lvgl-sys Version 0.2.0 2020-05-30 17:19:30 +02:00
.gitignore Don't commit auto-generated code 2020-05-30 16:45:58 +02:00
.gitmodules Configurable lv_conf.h file 2020-04-12 20:37:26 +02:00
Cargo.toml Improvements in the bindings 2020-04-18 19:20:38 +02:00
demo.png Sync code with image 2020-05-30 09:42:42 +02:00
LICENSE Initial commit 2020-04-10 15:00:21 +02:00
lv_demo.png Update images and links in README 2020-05-30 09:37:40 +02:00
README.md Update images and links in README 2020-05-30 09:37:40 +02:00

LittlevGL - Open-source Embedded GUI Library in Rust

Original LittlevGL demo image

LittlevGL provides everything you need to create a Graphical User Interface (GUI) on embedded systems with easy-to-use graphical elements, beautiful visual effects and low memory footprint.

LittlevGL is compatible with #![no_std] environments by default.

Official LittlevGL Website · C library repository · Live demo


Rust bindings usage demo code.

Usage

Edit your Cargo.toml file dependencies with:

$ cargo add lvgl

The build requires the environment variable bellow to be set:

  • DEP_LV_CONFIG_PATH: Path to the directory containing the lv_conf.h header file used for configuration of LittlevGL library.

We recommend the lv_conf.h file to be in your project's root directory. If so, the command to build your project would be:

$ DEP_LV_CONFIG_PATH=`pwd` cargo build

Running the demo

This project contains an example that can run in a desktop simulator.