Lines Matching full:with
8 library providing everything you need to create an embedded GUI with easy-to-use
16 - Advanced graphics with animations, anti-aliasing, opacity, smooth scrolling
18 - Multi-language support with UTF-8 encoding
19 - Multi-display support, even with mixed color formats
20 - Fully customizable graphic elements with CSS-like styles
21 - Hardware independent: use with any microcontroller or display
22 - Scalable: able to operate with little memory (64 kB Flash, 16 kB RAM)
24 - Single frame buffer operation even with advanced graphic effects
27 - User code developed under simulator can be shared with firmware to make UI development more effic…
82 * `lvgl <https://github.com/lvgl/lvgl>`__: The library itself with many `examples <https://github.c…
184 * Linux with frame buffer device such as /dev/fb0. This includes Single-board computers like the Ra…
185 * Anything else with a strong enough MCU and a peripheral to drive a display
192 If you can do this with your display then you can use it with LVGL.
196 * TFTs with 16 or 24 bit color depth
197 * Monitors with an HDMI port
238 … driver. Try the following code without using LVGL. You should see a square with red-blue gradient.
267 The configured LVGL color format is probably not compatible with your display's color format. Check…
275 - Use two display buffers and flush the buffer with DMA (or similar peripheral) in the background.
277 - If your display has an SPI port consider changing to a model with a parallel interface because it…
286 …, add the `-flto` compiler flag to enable link-time-optimisation together with `-Os` for GCC or `-…
294 * To work with lower :c:macro:`LV_MEM_SIZE` you can create Widgets only when required and delete th…
297 How do I use LVGL with an operating system?
300 To work with an operating system where tasks can interrupt each other (preemptively),