You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**For information abound Micropython lvgl bindings please refrer to [lv_bindings/README.md](https://github.com/littlevgl/lv_bindings/blob/master/README.md)**
6
+
**For information abound Micropython lvgl bindings please refrer to [lv_bindings/README.md](https://github.com/lvgl/lv_bindings/blob/master/README.md)**
7
7
8
-
See also [Micropython + LittlevGL](https://blog.littlevgl.com/2019-02-20/micropython-bindings) blog post.
8
+
See also [Micropython + LittlevGL](https://blog.lvgl.io/2019-02-20/micropython-bindings) blog post. (LittlevGL is LVGL's previous name.)
9
9
For questions and discussions - please use the forum: https://forum.lvgl.io/c/micropython
10
10
11
11
Original micropython README: https://github.com/micropython/micropython/blob/master/README.md
@@ -14,7 +14,7 @@ Original micropython README: https://github.com/micropython/micropython/blob/mas
@@ -24,10 +24,10 @@ Python 3 is required, but you can install some other version of python3 instead
24
24
25
25
Please set `ESPIDF` parameter for the esp-idf install dir.
26
26
It needs to match Micropython expected esp-idf, otherwise a warning will be displayed (and build will probably fail)
27
-
For more details refer to [Setting up the toolchain and ESP-IDF](https://github.com/littlevgl/lv_micropython/blob/master/ports/esp32/README.md#setting-up-the-toolchain-and-esp-idf)
27
+
For more details refer to [Setting up the toolchain and ESP-IDF](https://github.com/lvgl/lv_micropython/blob/master/ports/esp32/README.md#setting-up-the-toolchain-and-esp-idf)
28
28
29
29
When using IL9341 driver, the color depth and swap mode need to be set to match ILI9341. This can be done from the command line.
30
-
Here is the command to build ESP32 + LittlevGL which is compatible with ILI9341 driver:
30
+
Here is the command to build ESP32 + LVGL which is compatible with ILI9341 driver:
31
31
32
32
```
33
33
make -C mpy-cross
@@ -37,7 +37,7 @@ make -C ports/esp32 LV_CFLAGS="-DLV_COLOR_DEPTH=16 -DLV_COLOR_16_SWAP=1" BOARD=G
37
37
Explanation about the paramters:
38
38
-`LV_CFLAGS` are used to override color depth and swap mode, for ILI9341 compatibility.
39
39
-`LV_COLOR_DEPTH=16` is needed if you plan to use the ILI9341 driver.
40
-
-`LV_COLOR_16_SWAP=1` is needed if you plan to use the [Pure Micropython Display Driver](https://blog.littlevgl.com/2019-08-05/micropython-pure-display-driver).
40
+
-`LV_COLOR_16_SWAP=1` is needed if you plan to use the [Pure Micropython Display Driver](https://blog.lvgl.io/2019-08-05/micropython-pure-display-driver).
41
41
-`BOARD` - I use WROVER board with SPIRAM. You can choose other boards from `ports/esp32/boards/` directory.
42
42
-`deploy` - make command will create ESP32 port of Micropython, and will try to deploy it through USB-UART bridge.
43
43
@@ -67,15 +67,15 @@ Now you can build the JavaScript port.
67
67
68
68
## Super Simple Example
69
69
70
-
First, LittlevGL needs to be imported and initialized
70
+
First, LVGL needs to be imported and initialized
71
71
72
72
```python
73
73
import lvgl as lv
74
74
lv.init()
75
75
```
76
76
77
77
Then display driver and input driver needs to be registered.
78
-
Refer to [Porting the library](https://docs.littlevgl.com/#Porting) for more information.
78
+
Refer to [Porting the library](https://docs.lvgl.io/8.0/porting/index.html) for more information.
79
79
Here is an example of registering SDL drivers on Micropython unix port:
0 commit comments