Lines Matching refs:to
7 Note that you need to choose a board powerful enough to run LVGL and
10 For example ESP32 is a good candidate to create UI's with LVGL.
20 the latest version of LVGL from GitHub and simply copy it to Arduino's
26 To get started it's recommended to use `TFT_eSPI <https://github.com/Bodmer/TFT_eSPI>`__ library as…
27 driver to simplify testing. To make it work, setup ``TFT_eSPI``
28 according to your TFT display type via editing either:
42 1. Go to the directory of the installed Arduino libraries
43 2. Go to ``lvgl`` and copy ``lv_conf_template.h`` as ``lv_conf.h`` into the Arduino Libraries direc…
44 3. Open ``lv_conf.h`` and change the first ``#if 0`` to ``#if 1`` to enable the content of the file
63 to see how to initialize LVGL. ``TFT_eSPI`` is used as the display driver.
65 In the INO file you can see how to register a display and a touchpad for
76 :important: Due to some the limitations of Arduino's build system you
77 need to copy ``lvgl/examples`` to ``lvgl/src/examples``. Similarly for
78 the demos ``lvgl/demos`` to ``lvgl/src/demos``.
86 this debug information to the serial interface. To enable this feature
87 you have to edit the ``lv_conf.h`` file and enable logging in the
96 * LV_LOG_LEVEL_TRACE A lot of logs to give detailed information
105 output log is sent to the ``Serial`` port @ 115200 bps.