这个程序中的lcd.py文件在哪儿找?
-
import sensor, image
import lcdsensor.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中
-