I use AJAX web server on my ESP32 to display values I measure. The values consist of numbers in an array.
What is the best way to update those values? - If I am using too difficult one.
I am tring to make work this code, but I dont understand what is the problem, since this is a bit over my knowledge.
void handlevalues() {
server.send(200, "text/plane", String(strd[0][0]) + "," + String(strd[0][1]) + "," + String(strd[1][0]) + "," + String(strd[1][1]));
//and so on
}