📜  microbit python 文档 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:08.921000             🧑  作者: Mango

代码示例1
# Add your Python code here. E.g.
from microbit import *


while True:
    display.scroll('Hello, World!')
    display.show(Image.HEART)
    sleep(2000)