Lines Matching full:lvgl
1 /*Using LVGL with Arduino requires some extra steps:
2 *Be sure to read the docs here: https://docs.lvgl.io/master/integration/framework/arduino.html */
4 #include <lvgl.h>
10 /*To use the built-in examples and demos of LVGL uncomment the includes below respectively.
11 …*You also need to copy `lvgl/examples` to `lvgl/src/examples`. Similarly for the demos `lvgl/demos…
12 …*Note that the `lv_examples` library is for LVGL v7 and you shouldn't install it for this version …
13 *as the examples and demos are now part of the main LVGL library. */
23 /*LVGL draw into this buffer, 1/10 screen size usually works well. The size is in bytes*/
36 /* LVGL calls it when a rendered image needs to copied to the display*/
49 /*Call it to tell LVGL you are ready*/
87 /*Set a tick source so that LVGL will know how much time elapsed. */
116 lv_label_set_text( label, "Hello Arduino, I'm LVGL!" );
120 * - Online: https://docs.lvgl.io/master/examples.html
121 * - Source codes: https://github.com/lvgl/lvgl/tree/master/examples
133 lv_label_set_text( label, "Hello Arduino, I'm LVGL!" );