Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
209 views
in Technique[技术] by (71.8m points)

visual studio code - Issue with OV2640 camera and ESP32

I have an OV2640 camera I am trying to integrate with a ESP32_Devkitc_v4 chip and having troubles with the camera initialization. I am not sure I have all the connections correct and have updated the KConfig file to enable this camera.

Pinouts:

Camera => ESP32
CS     => D0
MOSI   => 23
MISO   => 19
SCK    => 18
SDA    => D2
SLC    => D1

It also needs this: Enable PSRAM on menuconfig or type it directly on sdkconfig.

But for the life of me I cannot find the 'menuconfig' in the VSCode IDE.

Any pointers would be appreciated. Thanks.

question from:https://stackoverflow.com/questions/65903026/issue-with-ov2640-camera-and-esp32

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Assuming you've installed ESP IDF according to the installation manual you open a terminal window, go to the root directory of your source project, activate the ESP IDF environment and run the idf.py with argument menuconfig. Sample for Linux/Mac users:

$ cd your_project_folder
$ . $HOME/esp/esp-idf/export.sh
$ idf.py menuconfig

I doubt if this has been integrated with VSCode.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...