openmv无法输出数据
-
我用IDE把程序烧录到openmv之后,串口调试助手显示“串口打开失败”
需要自己拔一次数据线再重新连接,串口会显示已打开,但是无法输出数据
且过几秒之后IDE会这样
代码就是最简单的让openmv输出helloworld
# UART Control # # This example shows how to use the serial port on your OpenMV Cam. Attach pin # P4 to the serial input of a serial LCD screen to see "Hello World!" printed # on the serial LCD display. 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, 19200) while(True): uart.write("Hello World!\r") time.sleep_ms(1000)
-
星瞳串口助手,要链接串口调试扩展板(或者其他ttl转usb模块)的COM口,而不是OpenMV的COM口。
-
按照这里的教程我用了TTL-USB,出现了上面我说的问题。所以TTL-USB不能用吗?
以及,我是需要用openmv给esp8266传输数据,也需要扩展版吗?
-
可以使用ttl-usb模块。
你的故障原因是:星瞳串口助手连接了OpenMV的COM口。你COM口选错了。
解决办法是:星瞳串口助手连接ttl-usb模块的COM口。