Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hpsaturn/espnow-camera
Proof of concept using an ESP32 camera and ESPNow on broadcast mode to have video streaming to others ESP32 using ESPNow.
https://github.com/hpsaturn/espnow-camera
esp32 esp32cam espnow idf
Last synced: 26 days ago
JSON representation
Proof of concept using an ESP32 camera and ESPNow on broadcast mode to have video streaming to others ESP32 using ESPNow.
- Host: GitHub
- URL: https://github.com/hpsaturn/espnow-camera
- Owner: hpsaturn
- License: gpl-3.0
- Created: 2022-09-23T20:55:19.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-28T17:15:12.000Z (7 months ago)
- Last Synced: 2024-10-06T12:08:38.475Z (about 1 month ago)
- Topics: esp32, esp32cam, espnow, idf
- Language: C
- Homepage:
- Size: 83 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**! ! D E P R E C A T E D ! !**
**This code was replaced for the [ESPNowCam Library](https://github.com/hpsaturn/esp32s3-cam)**
---
## ESPNow Camera
Proof of concept using an ESP32 camera and ESPNow on broadcast mode to have video streaming to others ESP32 using ESPNow.
## Build and Upload
```cpp
git clone --recursive https://github.com/hpsaturn/espnow-camera.git
cd espnow-camera
```We need remove extra target by this [issue](https://github.com/espressif/esp32-camera/issues/454):
```bash
cd lib/esp32-camera
rm -r target/esp32s2 target/esp32s3/
cd ../..
```Build and upload:
```bash
pio run --target upload
```## Update firmware
```cpp
git submodule update --init --recursive
pio run --target clean
pio run --target upload
```