openmv与STM32F407通信
-
-
# 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就行了。