Esp32cam: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 3: | Line 3: | ||
|Picture=ESP32-CAM.jpg | |Picture=ESP32-CAM.jpg | ||
|Omschrijving=Cheap webcams with Wifi, what could possibly go wrong? | |Omschrijving=Cheap webcams with Wifi, what could possibly go wrong? | ||
|Status= | |Status=In progress | ||
|Contact=noopwafel | |Contact=noopwafel | ||
|Contact1=Sebastius | |Contact1=Sebastius | ||
|Contact2=bertrik | |||
}} | }} | ||
Revision as of 21:40, 29 January 2019
Project ESP32-CAM | |
---|---|
Cheap webcams with Wifi, what could possibly go wrong? | |
Status | In progress |
Contact | noopwafel, Sebastius, bertrik |
Last Update | 2019-01-29 |
Introduction
It's an ESP32 board with a camera, running a web server, so it acts as an inexpensive webcam.
Hardware
To flash the module, do not forget the jumper between pins IO0 and GND!
Software
- maybe https://github.com/m5stack/m5stack-cam-psram ?
- https://github.com/donny681/ESP32_CAMERA_QR
- Step by step video guide to getting it up and running with Arduino IDE and the Expressif CameraWebServer example
platformio
The CameraWebServer example can be compiled as a platformio project: https://github.com/bertrik/CameraWebServer
To build the code, clone the git repo above, cd into it, then type
pio run
To upload it to the board (put a jumper between IO0 and GND):
pio run -t upload
To watch the debug output (remove the jumper):
pio device monitor
Platformio can be installed on a Debian Linux system as follows:
sudo apt-get install python-pip sudo pip install platformio pio upgrade