MicroMV LCD
1196357542@qq.com(讨论 | 贡献)2017年10月25日 (三) 05:00的版本 (创建页面,内容为“<p style="font-size:135%">'''MicroMV上外接显示屏的方法'''</p> '''连接方法:'''将TFT屏用8pin线连接在MicroMV背面的SPI-LCD接口上 :具体…”)
MicroMV上外接显示屏的方法
连接方法:将TFT屏用8pin线连接在MicroMV背面的SPI-LCD接口上
- 具体程序控制如下,此程序实现的效果是将摄像头采集到的图像在TFT上显示出来
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.