K210有很多种开发方式,选用MaixPy+MaixPy IDE
首先下载MaixPy IDE
https://dl.sipeed.com/shareURL/MAIX/MaixPy/ide/v0.2.5

我使用的WINDOWS开发,所以下载windows的其中一个就行
安装后运行,在工具处选择对应的开发板
左下角选择串口,WIN11已默认集成CH340驱动,所以不需要额外安装驱动


连接成功后点运行就可以连上板子了

调用一下摄像头
import sensor, image, time, lcd lcd.init(freq=15000000) sensor.reset() # Reset and initialize the sensor. It will # run automatically, call sensor.run(0) to stop sensor.set_pixformat(sensor.RGB565) # Set pixel format to RGB565 (or GRAYSCALE) sensor.set_framesize(sensor.QVGA) # Set frame size to QVGA (320x240) sensor.skip_frames(time = 2000) # Wait for settings take effect. clock = time.clock() # Create a clock object to track the FPS. while(True): clock.tick() # Update the FPS clock. img = sensor.snapshot() # Take a picture and return the image. lcd.display(img) # Display on LCD print(clock.fps()) # Note: MaixPy's Cam runs about half as fast when connected # to the IDE. The FPS should increase once disconnected.

可以在IDE的右上角看到实时的画面,至此已完成简单的开发环境搭建。
我要赚赏金
