好的,谢谢你~~~~~~~~~
V
vqz3 发布的帖子
-
RE: 运行了一两秒就不动了,点停止就显示忙碌中,过一会自己停了点开始就显示一直连接,要拔插USB后才正常,是要刷固件吗
import time,pyb from pyb import UART led = pyb.LED(3) uart = UART(3, 9600, timeout_char=1000) uart.init(9600, bits=8, parity=None, stop=1, timeout_char=1000) while(True): #led.on() uart.write('1\r\n') if uart.any(): print(uart.read(1)) time.sleep(100)