Lines Matching full:with

4 … graphics library providing everything you need to create an embedded GUI with easy-to-use graphic…
9 - Advanced graphics with animations, anti-aliasing, opacity, smooth scrolling
11 - Multi-language support with UTF-8 encoding
13 - Fully customizable graphic elements with CSS-like styles
14 - Hardware independent: use with any microcontroller or display
15 - Scalable: able to operate with little memory (64 kB Flash, 16 kB RAM)
17 - Single frame buffer operation even with advanced graphic effects
64 - [lvgl](https://github.com/lvgl/lvgl) The library itself with many [examples](https://github.com/l…
127 - Linux with frame buffer device such as /dev/fb0. This includes Single-board computers like the Ra…
128 - Anything else with a strong enough MCU and a peripheral to drive a display
132 If you can do this with your display then you can use it with LVGL.
135 - TFTs with 16 or 32 bit color depth
136 - Monitors with an HDMI port
163 … driver. Try the following code without using LVGL. You should see a square with red-blue gradient.
189 Probably LVGL's color format is not compatible with your display's color format. Check `LV_COLOR_DE…
191 If you are using 16-bit colors with SPI (or another byte-oriented interface) you probably need to s…
197 - Use two display buffers and flush the buffer with DMA (or similar peripheral) in the background
199 - If your display has an SPI port consider changing to a model with a parallel interface because it…
205 …, add the `-flto` compiler flag to enable link-time-optimisation together with `-Os` for GCC or `-…
210 - To work with lower `LV_MEM_SIZE` you can create objects only when required and delete them when t…
212 ### How to work with an operating system?
214 To work with an operating system where tasks can interrupt each other (preemptively) you should pro…