问题应该不在于我是不是使用了 if name
L
lqh4 发布的帖子
-
串口发送数据无法发送数据
import sensor import time import image import json from pyb import UART def Init_Cam(): sensor.reset() sensor.set_pixformat(sensor.RGB565) # grayscale is faster (160x120 max on OpenMV-M7) sensor.set_framesize(sensor.QQVGA) sensor.skip_frames(time = 2000) global clock clock = time.clock() def Init_Uart(Baud): global uart uart = UART(3, Baud) def Init_Func(): Init_Cam() Init_Uart(19200) def main(): Init_Func() while(True): clock.tick() img = sensor.snapshot() # 下面的`threshold`应设置为足够高的值,以滤除在图像中检测到的具有 # 低边缘幅度的噪声矩形。最适用与背景形成鲜明对比的矩形。 for r in img.find_rects(threshold = 10000): img.draw_rectangle(r.rect(), color = (255, 0, 0)) for p in r.corners(): img.draw_circle(p[0], p[1], 5, color = (0, 255, 0)) print(r) #uart.writechar(67)#Send a char uart.write("1234\n2345\n3456\nabcd\n")#Test Send to Uart Data uart.write(r+'\n') #print("FPS %f" % clock.fps()) if __name__ == "__main__": main()
请问下为什么我的这个程序发送串口数据,通过串口助手无法看到串口数据