I just received the Maix Cube and upon trying out the example code in the MaixPy IDE I get a distorted image in the LCD. See attached picture. Is the LCD not specified correctly in the program?
This is the code I used:
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.
(2.) If you have the Sipeed MAix R6 + 1 microphone array board, an FPC 0.5mm 10p connector, and a SP-MOD MicArray module, then this particular code script works on my MAix Cube { only problem is that I can’t figure out how to transfer the code script onto the MAix Cube so that the code script runs untethered to, unattached to, independent of the laptop }: