Skip to content
This repository was archived by the owner on Dec 4, 2020. It is now read-only.

Commit aa0a56e

Browse files
committed
Small typos, version update (still need to check examples)
1 parent fd0c472 commit aa0a56e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This library allows to use LittlevGL (v6.x) as an Arduino library. Library can b
66

77
There is simple example which uses https://github.com/Bodmer/TFT_eSPI library as an TFT driver to simplify testing. To get all this to work you have to setup TFT_eSPI to work with your TFT display type via editing the `User_Setup.h` file in TFT_eSPI library folder, or by selecting your own configurtion in the `User_Setup_Select.h` file in TFT_eSPI library folder.
88

9-
LittlevGL library has its own configuration file in `lv_conf.h` file, which is locatd in LittlevGL library folder. Please get in mind to check that corresponding resolutions in LVGL configuration match the ones in TFT_eSPI and with physical resolution of your display.
9+
LittlevGL library has its own configuration file in `lv_conf.h` file, which is locatd in LittlevGL library folder. Please get in mind to check that the corresponding resolutions in LVGL configuration match the ones in TFT_eSPI and with the physical resolution of your display.
1010

1111
Example result should look like this:
1212

@@ -21,7 +21,7 @@ Tested with:
2121

2222
## Debugging
2323

24-
In case of trouble there are debug information inside LVGL. In the `ESP32_TFT_eSPI` example there is `my_print` method, which allow to send this debug information to the serial interface. To enable this feature you have to edit `lv_conf.h` file and enable logging in section `log settings`:
24+
In case of trouble there are debug informations inside LVGL. In the `ESP32_TFT_eSPI` example there is `my_print` method, which allow to send this debug informations to the serial interface. To enable this feature you have to edit `lv_conf.h` file and enable logging in section `log settings`:
2525

2626
```c
2727
/*Log settings*/
@@ -36,4 +36,4 @@ In case of trouble there are debug information inside LVGL. In the `ESP32_TFT_eS
3636
# define LV_LOG_LEVEL LV_LOG_LEVEL_TRACE
3737
```
3838
39-
After enabling log module and setting LV_LOG_LEVEL accordingly the output log is sent to he `Serial` port @ 115200 Bd. After each line sent there is 100ms delay to allow the serial transfer to finish. This delay can be commented out in `my_print` method.
39+
After enabling log module and setting LV_LOG_LEVEL accordingly the output log is sent to the `Serial` port @ 115200 Bd. After each line sent there is 100ms delay to allow the serial transfer to finish. This delay can be commented out in `my_print` method.

examples/ESP32_TFT_eSPI/ESP32_TFT_eSPI.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void setup() {
9696

9797
/* Create simple label */
9898
lv_obj_t *label = lv_label_create(lv_scr_act(), NULL);
99-
lv_label_set_text(label, "Hello Arduino! (V6.0)");
99+
lv_label_set_text(label, "Hello Arduino! (V6.1)");
100100
lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0);
101101
}
102102

examples/ESP32_TFT_eSPI_Slider/Setup.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void setup() {
5959

6060
/* Create simple label */
6161
lv_obj_t *label = lv_label_create(lv_scr_act(), NULL);
62-
lv_label_set_text(label, "Hello Arduino! (V6.0)");
62+
lv_label_set_text(label, "Hello Arduino! (V6.1)");
6363
lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, -50);
6464

6565
/* Create a slider in the center of the display */
@@ -68,12 +68,12 @@ void setup() {
6868
lv_obj_set_height(slider, 50);
6969
lv_obj_align(slider, NULL, LV_ALIGN_CENTER, 0, 0); /*Align to the center of the parent (screen)*/
7070
lv_obj_set_event_cb(slider, slider_event_cb); /*Assign an event function*/
71-
71+
7272
/* Create a label below the slider */
7373
slider_label = lv_label_create(lv_scr_act(), NULL);
7474
lv_label_set_text(slider_label, "0");
7575
lv_obj_set_auto_realign(slider, true);
7676
lv_obj_align(slider_label, slider, LV_ALIGN_OUT_BOTTOM_MID, 0, 10);
7777

7878
}
79-
79+

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"type": "git",
1313
"url": "https://github.com/littlevgl/arduino"
1414
},
15-
"version": "2.0.3",
15+
"version": "2.0.4",
1616
"license": "MIT",
1717
"frameworks": "arduino",
1818
"build": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=lv_arduino
2-
version=2.0.3
2+
version=2.0.4
33
author=Gabor Kiss-Vamosi
44
maintainer=Pavel Brychta <[email protected]>
55
sentence=Full-featured Graphics Library for embedded systems

0 commit comments

Comments
 (0)