我用 uart.read(5)函数起不到作用,他的意思是接受字符串一直到慢5个字符。这个接受字符串函数有问题吗?
-
import timefrom pyb import UART
Always pass UART 3 for the UART number for your OpenMV Cam.# The second argument is the UART baud rate. For a more advanced UART control# example see the BLE-Shield
driver.uart = UART(3, 19200, timeout_char=1000)
while(True): str=uart.read(5) uart.write(str) uart.write("hello \r") time.sleep(1000)
-
如果缓冲区没有5个字符(也就是没有接收到5个字符),那么会等待1s。