。。。。。。。。。。。。。
h25a 发布的帖子
-
openmv怎么复位,举个例子,和stm32通信显示一串0开始的数,但是每次都不是0开始(下面是这个例子的代码)
import time from 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, 115200) a=0 while(True): a=a+11 uart.write("%d\r\n"%a) time.sleep_ms(1000)