导航

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

    npg3 发布的帖子

    • RE: OPENMV4 H7 PLUS使用LCD历程LCD屏幕无法正常显示画面

      0_1652005489059_13AF28AE8516A01EAC406FA31A6BF5B3.jpg

      发布在 OpenMV Cam
      N
      npg3
    • OPENMV4 H7 PLUS使用LCD历程LCD屏幕无法正常显示画面
      # 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, 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.
      
      while(True):
          lcd.display(sensor.snapshot()) # Take a picture and display the image.
      
      

      0_1652005457323_13AF28AE8516A01EAC406FA31A6BF5B3.jpg

      发布在 OpenMV Cam
      N
      npg3