导航

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

    WIlson

    @su5x

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

    su5x 关注

    su5x 发布的帖子

    • 教程里的lcd是不是无法使用了?

      https://book.openmv.cc/shield/lcd.html

      # LCD Example
      #
      # Note: To run this example you will need a LCD Shield for your OpenMV Cam.
      #
      # The LCD Shield allows you to view your OpenMV Cam's frame buffer on the go.
      
      import sensor, image
      import lcd
      
      sensor.reset() # Initialize the camera sensor.
      sensor.set_pixformat(sensor.RGB565) # or sensor.GRAYSCALE
      sensor.set_framesize(sensor.QQVGA2) # Special 128x160 framesize for LCD Shield.
      lcd.init() # Initialize the lcd screen.
      #lcd初始化
      
      while(True):
          lcd.display(sensor.snapshot()) # Take a picture and display the image.
          #将图像显示在lcd中
      

      0_1701001305837_ade34d33-b2f8-47ea-ba60-cef28a145c13-image.png

      发布在 OpenMV Cam
      S
      su5x