Skip to content

在 bpibit 上运行和 microbit 一样的 display 。

Notifications You must be signed in to change notification settings

BPI-STEAM/MircoPython-Display

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

        MircoPython - Display

Open Source Love

模块介绍:

LED 矩阵显示

LED 矩阵 硬件相关函数 display 模块。在调用相关函数前,需要先导入对应的库。

mpfs [/]> open
looking for all port...
Connected to esp32
mpfs [/]> put display.py
mpfs [/]> ls

Remote files in '/':

       boot.py
       wifi_cfg.py
       display.py

mpfs [/]>
import display
display = display.display()

display.scroll("Hello World!", color=Red, delay=150)
import display

display().scroll("Hello World!", color=Red, delay=150)

主要函数

  • display.scroll("Hello World!", color=Red, delay=150)

在 led 矩阵滚动显示红色色的 "Hello World!" 字符串,滚动的时间间隔为 150 ms。

  • display.show(Image.ALL_CLOCKS, loop=True, delay=100) :

在 led 矩阵通过led的亮灭显示出时钟。时钟循环播放,每次的变化间隔为 100 ms。


例程

文件 功能
show_text.py 显示简单文本
display_yellow_text.py 显示黄色文本
display_color_text.py 显示多色文本
display_custom_color.py 显示自定义颜色文本
show_image.py 显示内置图像
show_my_image.py 显示自定义图像
show_clock.py 显示内置动画
show_animation.py 显示自定义动画

About

在 bpibit 上运行和 microbit 一样的 display 。

Run: the same display as microbit on bpibit.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages