Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 17cedd2

Browse files
committed
1
1 parent 5327c20 commit 17cedd2

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

english_document.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ For example: `display.show(Image.ALL_CLOCKS, loop=True, delay=100)` In the LED
4141
---
4242

4343
## **Example**
44-
1. [show_text.py](https://github.com/aJantes/MicroPython-led/example/blob/master/show_text.py) -Display simple text
45-
2. [display_yellow_text.py](https://github.com/aJantes/MicroPython-led/example/blob/master/display_yellow_text.py) -Show Simple Text Show Yellow Text
46-
3. [display_color_text.py](https://github.com/aJantes/MicroPython-led/example/blob/master/display_color_text.py) -Display multicolor text
47-
4. [display_custom_color.py](https://github.com/aJantes/MicroPython-led/example/blob/master/display_custom_color.py) -Display multicolor text to display custom color text
48-
5. [show_image.py](https://github.com/aJantes/MicroPython-led/example/blob/master/show_image.py) -Display built-in images
49-
6. [show_my_image.py](https://github.com/aJantes/MicroPython-led/example/blob/master/show_my_image.py) -Display custom images
50-
7. [show_clock.py](https://github.com/aJantes/MicroPython-led/example/blob/master/show_clock.py) -Display built-in animation
51-
8. [show_animation.py](https://github.com/aJantes/MicroPython-led/example/blob/master/show_animation.py) -Display custom animation
5244

45+
1. [show_text.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_text.py) -Display simple text
46+
2. [display_yellow_text.py](https://github.com/aJantes/MircoPython-led/blob/master/example/display_yellow_text.py) -Show Simple Text Show Yellow Text
47+
3. [display_color_text.py](https://github.com/aJantes/MircoPython-led/blob/master/example/display_color_text.py) -Display multicolor text
48+
4. [display_custom_color.py](https://github.com/aJantes/MircoPython-led/blob/master/example/display_custom_color.py) -Display multicolor text to display custom color text
49+
5. [show_image.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_image.py) -Display built-in images
50+
6. [show_my_image.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_my_image.py) -Display custom images
51+
7. [show_clock.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_clock.py) -Display built-in animation
52+
8. [show_animation.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_animation.py) -Display custom animation

readme.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
![](album/bit.gif)
44
> 硬件介绍:
55
6-
- [BPI:bit(ESP32)](https://github.com/aJantes/introduce-bpi-bit/blob/master/readme.md)
7-
- [LED灯WS2812B](https://github.com/BPI-STEAM/BPI-BIT/blob/master/doc/WS2812B.pdf)
6+
- [BPI:bit(ESP32)](https://github.com/aJantes/introduce-bpi-bit/blob/master/README.md)
7+
- [LED灯(WS2812B)](https://github.com/aJantes/MircoPython-led/blob/master/source/WS2812B.pdf)
88

99

1010

1111

1212

1313
# LED矩阵显示
14-
LED矩阵 硬件相关函数 [display 模块](https://github.com/aJantes/MicroPython-led/blob/master/source/display.py)。在调用相关函数前,需要先导入对应的库。
14+
LED矩阵 硬件相关函数 [display 模块](https://github.com/aJantes/MircoPython-led/blob/master/source/display.py)。在调用相关函数前,需要先导入对应的库。
1515

1616

1717
## **显示滚动文本**
@@ -41,12 +41,12 @@ bpi:bit 的 led 面板 采用的是可编程的 RGB灯(ws2812b),这种 RGB
4141
---
4242

4343
## **led矩阵例子**
44-
1. [show_text.py](https://github.com/aJantes/MicroPython-led/blob/master/show_text.py) -显示简单文本
45-
2. [display_yellow_text.py](https://github.com/aJantes/MicroPython-led/blob/master/display_yellow_text.py) -显示黄色文本
46-
3. [display_color_text.py](https://github.com/aJantes/MicroPython-led/blob/master/display_color_text.py) -显示多色文本
47-
4. [display_custom_color.py](https://github.com/aJantes/MicroPython-led/blob/master/display_custom_color.py) -显示自定义颜色文本
48-
5. [show_image.py](https://github.com/aJantes/MicroPython-led/blob/master/show_image.py) -显示内置图像
49-
6. [show_my_image.py](https://github.com/aJantes/MicroPython-led/blob/master/show_my_image.py) -显示自定义图像
50-
7. [show_clock.py](https://github.com/aJantes/MicroPython-led/blob/master/show_clock.py) -显示内置动画
51-
8. [show_animation.py](https://github.com/aJantes/MicroPython-led/blob/master/show_animation.py) -显示自定义动画
44+
1. [show_text.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_text.py) -显示简单文本
45+
2. [display_yellow_text.py](https://github.com/aJantes/MircoPython-led/blob/master/example/display_yellow_text.py) -显示黄色文本
46+
3. [display_color_text.py](https://github.com/aJantes/MircoPython-led/blob/master/example/display_color_text.py) -显示多色文本
47+
4. [display_custom_color.py](https://github.com/aJantes/MircoPython-led/blob/master/example/display_custom_color.py) -显示自定义颜色文本
48+
5. [show_image.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_image.py) -显示内置图像
49+
6. [show_my_image.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_my_image.py) -显示自定义图像
50+
7. [show_clock.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_clock.py) -显示内置动画
51+
8. [show_animation.py](https://github.com/aJantes/MircoPython-led/blob/master/example/show_animation.py) -显示自定义动画
5252

source/WS2812B.pdf

275 KB
Binary file not shown.

0 commit comments

Comments
 (0)