1.. _getting_lvgl: 2 3============ 4Getting LVGL 5============ 6 7LVGL is available on GitHub: https://github.com/lvgl/lvgl. 8 9You can clone it or 10`Download <https://github.com/lvgl/lvgl/archive/refs/heads/master.zip>`__ 11the latest version of the library from GitHub. 12 13The graphics library itself is the ``lvgl`` directory. It contains several 14directories but to use LVGL you only need the ``.c`` and ``.h`` files under 15the ``src`` directory, plus ``lvgl/lvgl.h``, and ``lvgl/lv_version.h``. 16 17 18Demos and Examples 19------------------ 20 21The ``lvgl`` directory also contains an ``examples`` and a ``demos`` 22directory. If your project needs examples and/or demos, add the these 23directories to your project. If ``make`` or :ref:`build_cmake` handle the 24examples and demos directories, no extra action is required. 25 26