Search found 5 matches
- Sat Jan 21, 2023 9:41 pm
- Forum: General Discussion
- Topic: Send video and data over a websocket
- Replies: 0
- Views: 791
Send video and data over a websocket
I want to send a video stream and a float variable over a websocket, the float needs to be updated at about 10hz, the video fast enough to be smoothish. I got the video stream to work ok, and the float variable update to work seperately, now I'm wondering how to get both. I tried 2 websockets on dif...
- Wed Nov 04, 2020 2:59 pm
- Forum: ESP32 Arduino
- Topic: Arkhipenko's multi client camera stream mods, number of clients
- Replies: 0
- Views: 1613
Arkhipenko's multi client camera stream mods, number of clients
I downloaded this code: https://www.hackster.io/anatoli-arkhipenko/multi-client-mjpeg-streaming-from-esp32-47768f It works well. I'd like to do a couple of mods, one to add a pan r/c servo, and two to add the number of connected clients to the page. I'd like to eventually add a video stream onto my ...
- Thu Oct 17, 2019 5:53 pm
- Forum: ESP32 Arduino
- Topic: Error sending array > around 255 bytes
- Replies: 4
- Views: 4916
Re: Error sending array > around 255 bytes
Continuing from my last post. I've been reading up on arduino json 5, and came up with this code that builds a json response in a buffer. It prints to the serial port, and what I get is what I expect. #include <ArduinoJson.h> DynamicJsonBuffer jbuffer; JsonObject& jsonResponse = jbuffer.createObject...
- Wed Oct 16, 2019 4:34 pm
- Forum: ESP32 Arduino
- Topic: Error sending array > around 255 bytes
- Replies: 4
- Views: 4916
Re: Error sending array > around 255 bytes
I was using string, and the code was a kludge. I modded the code and did this, but the esp still crashes. Just before I try to send the json i print it to the serial port, and it looks Ok, I added a '0' to the end of the json. static esp_err_t graph_data_handler (httpd_req_t *req) { char htmlRespons...
- Tue Oct 15, 2019 9:22 am
- Forum: ESP32 Arduino
- Topic: Error sending array > around 255 bytes
- Replies: 4
- Views: 4916
Error sending array > around 255 bytes
I modded the Espwho code so that it has an extra page that draws a google chart, the data for the chart is on a another page in the form of a json. The chart auto updates with jquery every minute, the data table gets another value every minute too. When the table gets around 255 bytes long the send ...