导航

    • 登录
    • 搜索
    • 版块
    • 产品
    • 教程
    • 论坛
    • 淘宝
    1. 主页
    2. sdwo
    S
    • 举报资料
    • 资料
    • 关注
    • 粉丝
    • 屏蔽
    • 帖子
    • 楼层
    • 最佳
    • 群组

    sdwo

    @sdwo

    0
    声望
    3
    楼层
    319
    资料浏览
    0
    粉丝
    0
    关注
    注册时间 最后登录

    sdwo 关注

    sdwo 发布的帖子

    • RE: 1:OpenMV端引入串口通信模块,运行速度变的巨慢? 串口传输length信息到stm32端,为什么会这样报错

      问题解决了?可以看看你改的代码吗?

      发布在 OpenMV Cam
      S
      sdwo
    • RE: 1:OpenMV端引入串口通信模块,运行速度变的巨慢? 串口传输length信息到stm32端,为什么会这样报错

      你OPENmv的串口通信成功了吗?我要做的东西和你一样哎

      发布在 OpenMV Cam
      S
      sdwo
    • 串口通信到电脑上,没有反应

      1、硬件:USB转TTL,P4接RXD,P5接TXD,VCC接VIN,GND接GND
      2、软件:串口助手
      3、代码:IDE的自带uart代码
      4、串口助手就是没有收到HELLOWORLD0_1682405916192_V_6Y45YIUT46%~EOJK(KN2X.png

      # 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)
      
      
      发布在 OpenMV Cam
      S
      sdwo