lemariva / micropython-camera-driver

add camera support to MicroPython
https://lemariva.com
Apache License 2.0
460 stars 99 forks source link

M5-TimerCamera does not work properly with "Camera Capture Failed". #83

Open NojiriKeishi opened 1 year ago

NojiriKeishi commented 1 year ago

It doesn't work properly with M5-TimerCamera. I get an error "camera: Camera Capture Failed" in camera.capture(). The program is below.

import cameras camera.init(0, d0=32, d1=35, d2=34, d3=5, d4=39, d5=18, d6=36, d7=19, format=camera.JPEG, framesize=camera.FRAME_QVGA, xclk_freq=camera.XCLK_10MHz, href=26, vsync=22, reset=15, sioc=23, siod=25, xclk=27, pclk=21, quality=8) img = camera.capture()

Please let me know if you know how to solve this.