s60sc / ESP32-CAM_MJPEG2SD

ESP32 Camera motion capture application to record JPEGs to SD card as AVI files and stream to browser as MJPEG. If a microphone is installed then a WAV file is also created. Files can be uploaded via FTP or downloaded to browser.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

re: CAMERA_MODEL_NEW_ESPS3_RE1_0 SD_MMC pins

OldYin opened this issue · comments

I know you intended to get these right but a minor typo makes them wrong. I know that anybody who actually owns one of these boards, won't be confused... for long but I figured you would like to correct this.

In camera_pins.h
You have:

//Define SD Pins
#define SD_MMC_CLK 42
#define SD_MMC_CMD 39
#define SD_MMC_D0 4

Correct pins are:

//Define SD Pins
#define SD_MMC_CLK 42
#define SD_MMC_CMD 39
#define SD_MMC_D0 41

Regards,
Alex

Thanks. I dont have this board myself so see if @rjsachse will confirm as they provided the update

Good morning, I don't have that board either. I just copied the pins from appGlobals.h and pasted in camera_pins.h I noticed the board got added in march in version 9.62. Surprisingly you are the first to noticed. Easy fix.

Pull Request done

If I may refer you to issue #379 in which mamazad7 posted full pin details (with diagrams) for this board. Hope that helps.
Also I DO have this board :)

regards,
Alex

Been fixed just waiting on @s60sc to accept pull request, it was a typo in version 9.62.

No worries; thanks :)