1- # LittlevGL Arduino library
1+ # LVGL Arduino library
22
3- This library allows to use LittlevGL (v6 .x) as an Arduino library. Library can be installed via Arduino IDE Library Manager or as an .ZIP library.
3+ This library allows to use LVGL (v7.0 .x) as an Arduino library. Library can be installed via Arduino IDE Library Manager or as an .ZIP library.
44
55## Example
66
@@ -15,9 +15,9 @@ Example result should look like this:
1515Tested with:
1616
1717 * My own ESP32 board, module ESP32 Wroom
18- * PC OS: Linux, Ubuntu 18 .04 LTS
19- * IDE: Arduino IDE 1.8.9
20- * ESP32 Core: 1.0.2
18+ * PC OS: Linux, Ubuntu 20 .04 LTS
19+ * IDE: Arduino IDE 1.8.12
20+ * ESP32 Core: 1.0.4
2121
2222## Debugging
2323
@@ -26,14 +26,15 @@ In case of trouble there are debug informations inside LVGL. In the `ESP32_TFT_e
2626``` c
2727/* Log settings*/
2828#define USE_LV_LOG 1 /*Enable/disable the log module*/
29- #if USE_LV_LOG
29+ #if LV_USE_LOG
3030/* How important log should be added:
3131 * LV_LOG_LEVEL_TRACE A lot of logs to give detailed information
3232 * LV_LOG_LEVEL_INFO Log important events
33- * LV_LOG_LEVEL_WARN Log if something unwanted happened but didn't caused problem
33+ * LV_LOG_LEVEL_WARN Log if something unwanted happened but didn't cause a problem
3434 * LV_LOG_LEVEL_ERROR Only critical issue, when the system may fail
35+ * LV_LOG_LEVEL_NONE Do not log anything
3536 * /
36- # define LV_LOG_LEVEL LV_LOG_LEVEL_TRACE
37+ # define LV_LOG_LEVEL LV_LOG_LEVEL_WARN
3738```
3839
3940After enabling log module and setting LV_LOG_LEVEL accordingly the output log is sent to the `Serial` port @ 115200 Bd.
0 commit comments