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
-Ability to display non-ASCII characters, such as Chinese and special symbols, by importing `bmf` font files.
13
+
-Supports displaying `PBM` images in `P4`/`P6`format and `BMP` images in `24-bit`.
14
+
-Default parameters can be set during initialization, making function calls more concise. Additionally, the current function call can override the default parameters.
15
+
-Compatible with most official and unofficial versions of `MicroPython`. It is implemented purely with native `MicroPython`and does not require firmware compilation. Additionally, it maintains high efficiency as much as possible.
16
+
-Supports multiple screen models such as `SSD1306`, `ST7735`, and `ST7789`. It also supports driving high-resolution screens on low-memory development boards (e.g., `ESP32C3`driving`240*240ST7789` screens).
19
17
20
-
### 使用方法
21
-
-详见源码注释
18
+
### Usage
19
+
-Please refer to the source code comments.(The comments section is written in Chinese and may need translation in order to read.)
22
20
23
-
### 示例代码
21
+
### Example Code
24
22
```python
25
-
#这是一个使用示例 This is an example of usage
23
+
# This is an example of usage
26
24
import time
27
25
import framebuf
28
26
from machine importSPI, Pin
@@ -32,41 +30,33 @@ from libs.easydisplay import EasyDisplay
0 commit comments