micropython-camera-driver
micropython-camera-driver copied to clipboard
add camera support to MicroPython
rst:0xc (SW_CPU_RESET),boot:0x33 (SPI_FAST_FLASH_BOOT) configsip: 0, SPIWP:0xee clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 mode:DIO, clock div:2 load:0x3fff0030,len:5356 ho 0 tail 12 room 4 load:0x40078000,len:14156 load:0x40080400,len:3424 entry 0x40080634 connecting to network... network config: ('10.11.2.146', '255.255.254.0', '10.11.2.1', '114.114.114.114')...
``` state = camera.init(0, format=camera.RGB565, fb_location=camera.PSRAM) print("Camera State: ",state) camera.framesize(camera.FRAME_96X96) buf = camera.capture() buf False ```
Trying to read from the I2C bus causes an ESP32 Guru Meditation Error: i2c = machine.I2C(0, scl=machine.Pin(14), sda=machine.Pin(13)) i2c.scan() [64] i2c.readfrom_mem(64, 0, 2) Guru Meditation Error: Core 1 panic'ed (StoreProhibited)....
How can I enable RTCIO. When I type menuconfig, I just see camera options. ``` esp/esp-idf/components/esp32-camera/driver/twi.c:61:24: error: 'rtc_gpio_desc' undeclared (first use in this function); did you mean 'rtc_io_desc'? uint32_t rtc_reg...
As advised in Issue #8, opening this issue again. I have the exact issue described by AlSimon on 25 Feb in #8. I'm using same firmware, uPyCam at same commit,...
Hello Pibe !!! First I congratulate you for your work, it is inspiring. Then I allow myself to ask for your help. I have my ESP32-CAM module like the one...
Hi, thank you for this nice project. Not an issue per se, but is it possible to remove the Micropython firmware I've uploaded to a Esp32-Cam AI-Thinker? so to get...
Got the crash below using: - micropython-camera-driver f56e12a587456d4371ecbd6601b3889e636896f8 - micropython tag: v1.18 - esp-idf-v4.3.1 tag: v4.3.1 - esp32-camera tag: v2.0.0 The crash was in cam_hal.c > 251: cam_obj->dma_buffer = NULL;...
``` MicroPython v1.18-74-gfeeeb5ea3 on 2022-02-02; ESP32-cam module (i2s) with ESP32 Type "help()" for more information. >>> import camera >>> 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_VGA,...
Using Thonny, I've successfully installed your latest binary: https://github.com/lemariva/micropython-camera-driver/blob/master/firmware/micropython_camera_feeeb5ea3_esp32_idf4_4.bin and get the Micropython prompt, but, I can't seem to get past the simplest test: >>> import camera >>> camera.init(0, format=camera.JPEG,...