diff options
author | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2023-03-14 07:38:03 +0100 |
---|---|---|
committer | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2023-03-14 07:38:14 +0100 |
commit | e26a46c43c23e91198318659c8214cc34be5cee2 (patch) | |
tree | 55733d51e8551f42bc399b078ba35b1404b388c1 /examples/arduino/LVGL_Arduino | |
parent | a19ad9bd1d40d1cfba208cbbaeba6238dc12170b (diff) | |
download | lvgl-e26a46c43c23e91198318659c8214cc34be5cee2.tar.gz lvgl-e26a46c43c23e91198318659c8214cc34be5cee2.zip |
docs(arduino): add note to not use lv_examles library
fixes #4054
Diffstat (limited to 'examples/arduino/LVGL_Arduino')
-rw-r--r-- | examples/arduino/LVGL_Arduino/LVGL_Arduino.ino | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/arduino/LVGL_Arduino/LVGL_Arduino.ino b/examples/arduino/LVGL_Arduino/LVGL_Arduino.ino index 3e44d6be0..548b97bd0 100644 --- a/examples/arduino/LVGL_Arduino/LVGL_Arduino.ino +++ b/examples/arduino/LVGL_Arduino/LVGL_Arduino.ino @@ -1,13 +1,13 @@ /*Using LVGL with Arduino requires some extra steps: - * Be sure to read the docs here: https://docs.lvgl.io/master/get-started/platforms/arduino.html */ + *Be sure to read the docs here: https://docs.lvgl.io/master/get-started/platforms/arduino.html */ #include <lvgl.h> #include <TFT_eSPI.h> /*To use the built-in examples and demos of LVGL uncomment the includes below respectively. - *You also need to copy `lvgl/examples` to `lvgl/src/examples`. Similarly for the demos `lvgl/demos` to `lvgl/src/demos`.*/ -//#include <demos/lv_demos.h> -//#include <examples/lv_examples.h> + *You also need to copy `lvgl/examples` to `lvgl/src/examples`. Similarly for the demos `lvgl/demos` to `lvgl/src/demos`. + Note that the `lv_examples` library is for LVGL v7 and you shouldn't install it for this version (since LVGL v8) + as the examples and demos are now part of the main LVGL library. */ /*Change to your screen resolution*/ static const uint16_t screenWidth = 480; |