openmv3 在使用固件版本为4.2.3 报错,没有lcd.QVGA
-
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(framesize=lcd.QVGA) # Initialize the lcd screen. while(True): lcd.display(sensor.snapshot()) # Take a picture and display the image.
-
lcd.init(framesize=lcd.QVGA) # Initialize the lcd screen.
改为
lcd.init() # Initialize the lcd screen.