问题解决了?可以看看你改的代码吗?
S
sdwo
@sdwo
0
声望
3
楼层
264
资料浏览
0
粉丝
0
关注
sdwo 发布的帖子
-
RE: 1:OpenMV端引入串口通信模块,运行速度变的巨慢? 串口传输length信息到stm32端,为什么会这样报错
你OPENmv的串口通信成功了吗?我要做的东西和你一样哎
-
串口通信到电脑上,没有反应
1、硬件:USB转TTL,P4接RXD,P5接TXD,VCC接VIN,GND接GND
2、软件:串口助手
3、代码:IDE的自带uart代码
4、串口助手就是没有收到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, 9600) while(True): uart.write("Hello World!\r") time.sleep_ms(1000)