自学内容网 自学内容网

STM32F4系列单片机新玩法---Micropython--pyBoard

只需要更改main.py文件的内容即可,例程CRTL+V 

1、流水灯:

# main.py -- put your code here!
import pyb
while(1):
     for n in range(1,5)
    led=pyb.LED(n)
    led.on()
    pyb.delay(1000)
    led.off()

2、灯条,可以改变delay值来凸显效果!!!

# main.py -- put your code here!
import pyb
while(1):
     for n in range(1,5):
    led=pyb.LED(n)
    led.toggle()
    pyb.delay(200)


原文地址:https://blog.csdn.net/shenye1141664884/article/details/144080947

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!