“MicroMV LCD”的版本间的差异
(创建页面,内容为“<p style="font-size:135%">'''MicroMV上外接显示屏的方法'''</p> '''连接方法:'''将TFT屏用8pin线连接在MicroMV背面的SPI-LCD接口上 :具体…”) |
502748957@qq.com(讨论 | 贡献) |
||
第21行: | 第21行: | ||
− | [[ | + | [[MicroMV 简介|返回MicroMV目录页面]] |
2018年12月7日 (五) 03:14的最新版本
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.