From 06962a564fd668eced22b2e9bc19e7732abf94ec Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Tue, 2 Nov 2021 18:40:59 +0100 Subject: [PATCH] docs(arduino) update how to use the examples Related to: #2706 --- docs/get-started/arduino.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/get-started/arduino.md b/docs/get-started/arduino.md index c4f7598a3..b7811d85e 100644 --- a/docs/get-started/arduino.md +++ b/docs/get-started/arduino.md @@ -41,8 +41,10 @@ TFT_eSPI is used as the display driver. In the INO file you can see how to register a display and a touchpad for LVGL and call an example. -Note that, there is no dedicated INO file for every example, but you can call functions like `lv_example_btn_1()` or `lv_example_slider_1()` to run an example. -Most of the examples are available in the [`lvgl/examples`](https://github.com/lvgl/lvgl/tree/master/examples) folder. Some are also available in [`lv_demos`](https://github.com/lvgl/lv_demos), which needs to be installed and configured separately. +Note that, there is no dedicated INO file for every example, but you can open the examples in `lvgl/examples` folder and copy-paste them to your INO file. +You can NOT call the examples like `lv_example_btn_1()` becuase the Arduino doesn't compile the examples. + +You can the [lv_demos](https://github.com/lvgl/lv_demos) library which needs to be installed and configured separately. ## Debugging and logging