You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**To receive** the data, you only need to define a buffer and callback:
91
89
@@ -144,6 +142,15 @@ CamFreenove Camera;
144
142
>[!TIP]
145
143
>For now, it includes drivers for FreenoveS3, XIAOS3, M5UnitCamS3, Freenove WRover, ESP32Cam AI-Thinker and the TTGO T-Journal cameras, but you are able to define your custom camera like is shown in the [custom-camera-sender](https://github.com/hpsaturn/ESPNowCam/tree/master/examples/custom-camera-sender) example. If you can run it in a different camera, please notify me via a [GitHub issue](https://github.com/hpsaturn/ESPNowCam/issues/new) or please contribute with the project sending a pull request :D
146
144
145
+
### Channel
146
+
147
+
Is possible to configure the radio channel or the WiFi channel. You should put the same channel on all devices. This setting is optional, and it is not mandatory, but could improve the connection.
148
+
149
+
```cpp
150
+
radio.setChannel(2);
151
+
radio.init();
152
+
```
153
+
147
154
### PSRAM or DRAM?
148
155
149
156
Well, in my last tests with different cameras and using QVGA frame size, seems that is better using the DRAM and the internal JPG. DRAM is more faster than PSRAM, and the internal compressor has a better quality with the same JPGQ level, but it uses more bandwidth, on the other hand the result is so good on P2P mode.
@@ -177,6 +184,13 @@ Some examples are for Arduino users (*.ino samples), but is possible too compile
177
184
pio run --target upload
178
185
```
179
186
187
+
### Camera CLI
188
+
189
+
Also I'm working in a complete Camera configurator and test suite for this library and also other features around the ESP Cameras. It is a project in progress, but you are able to configure and test all ESPNowCam features more easy using a CLI and manager that runs into the Camera:
190
+
191
+

192
+
more [here](https://github.com/hpsaturn/esp32-camera-cli).
sentence=ESPNowCam, a straightforward video streamer for popular ESP32Cam models, leveraging the ESPNow protocol. No need for IPs, routers, or credentials—keeping it simple! :D
0 commit comments