File tree Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ The following example demonstrates how to develop built-in or custom development
293
293
294
294
For configuring LVGL (v8.3.x), please refer to [ here] ( #configuring-lvgl ) for more detailed information.
295
295
296
- * [ Porting] ( examples/LVGL/v8/Porting/ ) : This example demonstrates how to port LVGL (v8.3.x). And for RGB LCD, it can enable the avoid tearing fucntion .
296
+ * [ Porting] ( examples/LVGL/v8/Porting/ ) : This example demonstrates how to port LVGL (v8.3.x). And for RGB LCD, it can enable the avoid tearing function .
297
297
* [ Rotation] ( examples/LVGL/v8/Rotation/ ) : This example demonstrates how to use LVGL to rotate the display.
298
298
299
299
> [ !WARNING]
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* # LVGL Porting Example
3
3
*
4
- * The example demonstrates how to port LVGL(v8). And for RGB LCD, it can enable the avoid tearing fucntion .
4
+ * The example demonstrates how to port LVGL(v8). And for RGB LCD, it can enable the avoid tearing function .
5
5
*
6
6
* ## How to Use
7
7
*
@@ -99,7 +99,7 @@ void setup()
99
99
100
100
/* *
101
101
* Or try out a demo.
102
- * Don't forget to uncomment header and enable the demos in `lv_conf.h`. E.g. `LV_USE_DEMOS_WIDGETS `
102
+ * Don't forget to uncomment header and enable the demos in `lv_conf.h`. E.g. `LV_USE_DEMO_WIDGETS `
103
103
*/
104
104
// lv_demo_widgets();
105
105
// lv_demo_benchmark();
Original file line number Diff line number Diff line change 1
1
# LVGL Porting Example
2
2
3
- The example demonstrates how to port LVGL(v8). And for RGB LCD, it can enable the avoid tearing fucntion .
3
+ The example demonstrates how to port LVGL(v8). And for RGB LCD, it can enable the avoid tearing function .
4
4
5
5
## How to Use
6
6
Original file line number Diff line number Diff line change 1
1
# PlatformIO Example
2
2
3
- The example is used to guide how to use this library in PlatformIO. It also demonstrates how to port LVGL(v8). And for RGB LCD, it can enable the avoid tearing fucntion .
3
+ The example is used to guide how to use this library in PlatformIO. It also demonstrates how to port LVGL(v8). And for RGB LCD, it can enable the avoid tearing function .
4
4
5
5
It is by default suitable for ** ESP32-S3-LCD-EV-Board** and ** ESP32-S3-LCD-EV-Board-2** boards. Users should modify the [ boards/ESP-LCD.json] ( boards/ESP-LCD.json ) file as needed.
6
6
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ void setup()
55
55
56
56
/* *
57
57
* Or try out a demo.
58
- * Don't forget to uncomment header and enable the demos in `lv_conf.h`. E.g. `LV_USE_DEMOS_WIDGETS `
58
+ * Don't forget to uncomment header and enable the demos in `lv_conf.h`. E.g. `LV_USE_DEMO_WIDGETS `
59
59
*/
60
60
// lv_demo_widgets();
61
61
// lv_demo_benchmark();
Original file line number Diff line number Diff line change 1
1
/* *
2
2
* # SquareLine Porting Example
3
3
*
4
- * The example demonstrates how to port SquareLine (v1.3.x) project. And for RGB LCD, it can enable the avoid tearing fucntion .
4
+ * The example demonstrates how to port SquareLine (v1.3.x) project. And for RGB LCD, it can enable the avoid tearing function .
5
5
*
6
6
* ## How to Use
7
7
*
Original file line number Diff line number Diff line change 1
1
# SquareLine Porting Example
2
2
3
- The example demonstrates how to port SquareLine (v1.3.x) project. And for RGB LCD, it can enable the avoid tearing fucntion .
3
+ The example demonstrates how to port SquareLine (v1.3.x) project. And for RGB LCD, it can enable the avoid tearing function .
4
4
5
5
## How to Use
6
6
Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ void ParseWeather(String url)
312
312
Serial.printf (" Weather: %s\n " , Weather);
313
313
Serial.printf (" temperature: %d\n " , temperature);
314
314
} else {
315
- Serial.printf (" ERROR: HTTP_CODE Weather \n " );
315
+ Serial.printf (" ERROR: [ParseWeather] OpenWeather API --> HTTP code %d \n " , httpGet );
316
316
}
317
317
} else {
318
318
Serial.printf (" ERROR: httpGet Weather\n " );
@@ -338,7 +338,7 @@ void Parselatlon(String url)
338
338
Serial.printf (" lat: %s\n " , lat);
339
339
Serial.printf (" lon: %s\n " , lon);
340
340
} else {
341
- Serial.printf (" ERROR: HTTP_CODE latlon \n " );
341
+ Serial.printf (" ERROR: [Parselatlon] OpenWeather API --> HTTP code %d \n " , httpGet );
342
342
}
343
343
} else {
344
344
Serial.printf (" ERROR: httpGet latlon\n " );
You can’t perform that action at this time.
0 commit comments