|
4 mesi fa | |
---|---|---|
.. | ||
demos | 4 mesi fa | |
docs | 4 mesi fa | |
env_support | 4 mesi fa | |
examples | 4 mesi fa | |
porting | 4 mesi fa | |
scripts | 4 mesi fa | |
src | 4 mesi fa | |
tests | 4 mesi fa | |
zephyr | 4 mesi fa | |
.codecov.yml | 4 mesi fa | |
.editorconfig | 4 mesi fa | |
.pre-commit-config.yaml | 4 mesi fa | |
CMakeLists.txt | 4 mesi fa | |
Kconfig | 4 mesi fa | |
LICENCE.txt | 4 mesi fa | |
README.md | 4 mesi fa | |
README_pt_BR.md | 4 mesi fa | |
README_zh.md | 4 mesi fa | |
SConscript | 4 mesi fa | |
component.mk | 4 mesi fa | |
idf_component.yml | 4 mesi fa | |
library.json | 4 mesi fa | |
library.properties | 4 mesi fa | |
lv_conf_template.h | 4 mesi fa | |
lvgl.h | 4 mesi fa | |
lvgl.mk | 4 mesi fa |
LVGL provides everything you need to create an embedded GUI with easy-to-use graphical elements, beautiful visual effects and a low memory footprint.
English | 中文 | Português do Brasil
Basically, every modern controller (which is able to drive a display) is suitable to run LVGL. The minimal requirements are:
<td> <strong>Flash/ROM</strong></td>
<td> > 64 kB </td>
<td> > 180 kB</td>
<td> <strong>Static RAM</strong></td>
<td> > 16 kB </td>
<td> > 48 kB</td>
<td> <strong>Draw buffer</strong></td>
<td> > 1 × <em>hor. res.</em> pixels </td>
<td> > 1/10 screen size </td>
<td> <strong>Compiler</strong></td>
<td colspan="2"> C99 or newer </td>
Note that the memory usage might vary depending on the architecture, compiler and build options.
LVGL is completely platform independent and can be used with any MCU that fulfills the requirements. Just to mention some platforms:
LVGL is also available as:
This list shows the recommended way of learning the library:
For more examples see the examples folder.
lv_obj_t * btn = lv_btn_create(lv_scr_act()); /*Add a button to the current screen*/
lv_obj_set_pos(btn, 10, 10); /*Set its position*/
lv_obj_set_size(btn, 100, 50); /*Set its size*/
lv_obj_add_event_cb(btn, btn_event_cb, LV_EVENT_CLICKED, NULL); /*Assign a callback to the button*/
lv_obj_t * label = lv_label_create(btn); /*Add a label to the button*/
lv_label_set_text(label, "Button"); /*Set the labels text*/
lv_obj_center(label); /*Align the label to the center*/
...
void btn_event_cb(lv_event_t * e)
{
printf("Clicked\n");
}
Learn more about Micropython.
def btn_event_cb(e):
print("Clicked")
# Create a Button and a Label
btn = lv.btn(lv.scr_act())
btn.set_pos(10, 10)
btn.set_size(100, 50)
btn.add_event_cb(btn_event_cb, lv.EVENT.CLICKED, None)
label = lv.label(btn)
label.set_text("Button")
label.center()
LVGL Kft was established to provide a solid background for LVGL library. We offer several type of services to help you in UI development:
For more information see https://lvgl.io/services Feel free to contact us if you have any questions.
LVGL is an open project and contribution is very welcome. There are many ways to contribute from simply speaking about your project, through writing examples, improving the documentation, fixing bugs to hosting your own project under the LVGL organization.
For a detailed description of contribution opportunities visit the Contributing section of the documentation.