pycameresp icon indicating copy to clipboard operation
pycameresp copied to clipboard

cam support for Freenove ESP32-Wrover and clones ESP32-Wrover-Dev

Open jenswes opened this issue 10 months ago • 6 comments

Hello,

thanks for this nice project, i'm trying to bring it to run :-)

rzeldent Rene 's nice esp32cam-rtsp and maxgerhardt 's pio-esp32cam have some more esp32cam versions supported by looking into the following configs,

https://github.com/rzeldent/esp32cam-rtsp/blob/develop/include/lookup_camera_config.h
https://github.com/maxgerhardt/pio-esp32cam/blob/main/src/camera_pins.h

i would guess the following could support my cam: The board is some clone of Freenove ESP32-Wrover CAM Board (i think, it looks like)

	# wrover dev camera device
		video.video.Camera.gpio_config(
			pin_pwdn=-1, pin_reset=-1, pin_xclk=21, pin_sscb_sda=26, pin_sscb_scl=27,
			pin_d7=35, pin_d6=34, pin_d5=39, pin_d4=36,
			pin_d3=19,  pin_d2=18, pin_d1=5, pin_d0=4,
			pin_vsync=25, pin_href=23, pin_pclk=22, xclk_freq_hz=20000000, ledc_timer=0,
			ledc_channel=0 , pixel_format=3, frame_size=13, jpeg_quality=0, fb_count=2, flash_led=14)
		tools.sdcard.SdCard.set_slot(slot=None) # No sdcard available

jenswes avatar Oct 08 '23 18:10 jenswes