嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
ESP32 camera sdcard
Camera with Web Server
Preparation
To run this example, you need the following components:
An ESP32 Module: Either ESP32-WROVER-KIT or ESP-EYE, which we highly recommend for beginners, is used in this example.
A Camera Module: Either OV2640 or OV3660 or OV5640 image sensor, which we highly recommend for beginners, is used in this example.
Quick Start
After you've completed the hardware settings, please follow the steps below:
Connect the camera to ESP32 module. For connection pins, please see here
Configure the example through idf.py menuconfig;
Build And Flash the application to ESP32;
Open Your Browser and point it to http://[ip-of-esp32]/;
To Get Image press Get Still or Start Stream;
Use The Options to enable/disable Face Detection, Face Recognition and more;
View The Stream in a player like VLC: Open Network http://[ip-of-esp32]:81/stream;
camera_web_server
├── CMakeLists.txt
├── Makefile
├── README.md
├── main
│ ├── CMakeLists.txt
│ ├── Kconfig.projbuild
│ ├── app_camera.c
│ ├── app_httpd.c
│ ├── app_main.c
│ ├── app_mdns.c
│ ├── app_wifi.c
│ ├── component.mk
│ ├── include
│ │ ├── app_camera.h
│ │ ├── app_httpd.h
│ │ ├── app_mdns.h
│ │ └── app_wifi.h
│ └── www
│ ├── compress_pages.sh
│ ├── index_ov2640.html
│ ├── index_ov2640.html.gz
│ ├── index_ov3660.html
│ ├── index_ov3660.html.gz
│ ├── index_ov5640.html
│ ├── index_ov5640.html.gz
│ ├── monitor.html
│ └── monitor.html.gz
├── partitions.csv
└── sdkconfig.defaults
3 directories, 26 files