Is possible get image from ESP32-CAM and then send it to Telegram using Universal-Arduino-Telegram-Bot (https://github.com/witnessmenow/Univers ... legram-Bot)?
Any ideas?
Search found 3 matches
- Sun Feb 02, 2020 10:20 pm
- Forum: ESP32 Arduino
- Topic: Send ESP32-CAM image to Telegram
- Replies: 1
- Views: 6268
- Tue Nov 12, 2019 11:34 pm
- Forum: General Discussion
- Topic: Avoid WebsocketsServer loop blocking
- Replies: 0
- Views: 2325
Avoid WebsocketsServer loop blocking
I have a esp32-cam an I use a WebsocketsServer to send the video streaming.
This is my code:
auto client = camserver.accept();
while (client.available()) {
client.poll();
fb = esp_camera_fb_get();
client.sendBinary((const char *)fb->buf, fb->len);
esp_camera_fb_return(fb);
fb = NULL ...
This is my code:
auto client = camserver.accept();
while (client.available()) {
client.poll();
fb = esp_camera_fb_get();
client.sendBinary((const char *)fb->buf, fb->len);
esp_camera_fb_return(fb);
fb = NULL ...
- Fri Oct 18, 2019 2:54 pm
- Forum: ESP32 Arduino
- Topic: ESPAsyncWebServer and video streaming
- Replies: 0
- Views: 3009
ESPAsyncWebServer and video streaming
Does anyone have any idea how to broadcast the video from esp32-cam by WebSocket?
I'd like create a WebServer to get html webpage and show on a section of this webpage the esp32-cam video by WebSocket. How can I send the video stream?
I'd like create a WebServer to get html webpage and show on a section of this webpage the esp32-cam video by WebSocket. How can I send the video stream?