系统迁移中,暂时无法访问,所有数据会迁移到新的网站。
OpenMV VSCode 扩展发布了,在插件市场直接搜索OpenMV就可以安装
如果有产品硬件故障问题,比如无法开机,论坛很难解决。可以直接找售后维修。
发帖子之前,请确认看过所有的视频教程,https://singtown.com/learn/ 和所有的上手教程http://book.openmv.cc/
每一个新的提问,单独发一个新帖子
帖子需要目的,你要做什么?
如果涉及代码,需要报错提示与全部代码文本,请注意不要贴代码图片
必看:玩转星瞳论坛了解一下图片上传,代码格式等问题。
openmv与STM32F407通信
-
可以实时发送中心点坐标吗
-
我说的是OPenmvM7的串口一的引脚是什么?麻烦了
-
-
# 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(1000)
直接将三改成一就行了吗
-
对
-
这个要是用串口通信助手在电脑上看发送的东西,怎么操作?需要其他模块吗
-
-
uart.write("1")
这个发送的是文本还是数字
-
-
@州山 你好,我现在也在做STM32和openMV的串口通信,请问两者之间是怎么连接的呢。我是这么连接的
RXD(10)—— TXD(P4)
TXD(9)------ RXD(P5)
GND --------- GND
3.3V -------- VIN
但是我一插上就只是闪了一下白光,就灭灯了,没有运行程序
-
@5tvu 兄弟,这个问题解决了吗?
-
@5tvu 通信只需要两根线,一根RX,一根TX就行了。