Search found 2 matches

by detectivet
Sat May 30, 2020 3:17 pm
Forum: ESP32 Arduino
Topic: How to send data via wifi faster?
Replies: 1
Views: 3313

How to send data via wifi faster?

I'm trying to use ESP32 to receive audio via an I2S ADC, and send the data through wifi to a computer in real time. Here is the relevant part of my code: void reader(void *pvParameters) { uint64_t read_sum; String for_send; // The 4 high bits are the channel, and the data is inverted uint16_t offset...
by detectivet
Thu Jan 02, 2020 2:01 pm
Forum: ESP32 Arduino
Topic: Is there a way to find how many clients opened the web page?
Replies: 0
Views: 1840

Is there a way to find how many clients opened the web page?

I have a ESP32-CAM, it only allows one client to access the camera web page per time, it will return a 400 code if there is a already a client opened this web page. The problem is, sometime the web server returns a 400 code when there isn't any client using the web, an error/bug I guess. What I did ...