Werte in korrekter Reihenfolge ausgegeben
This commit is contained in:
parent
bd25950be3
commit
7076dddda3
|
@ -48,8 +48,8 @@ const int led = 13;
|
||||||
|
|
||||||
void handleRoot() {
|
void handleRoot() {
|
||||||
String liste;
|
String liste;
|
||||||
for(int i = 0; i < 100; i++) {
|
for(int i = idWert; i < idWert + 100; i++) {
|
||||||
liste = liste + letzteWerte[i] + "\r\n";
|
liste = liste + letzteWerte[i % 100] + "\r\n";
|
||||||
}
|
}
|
||||||
server.send(200, "text/html", websiteA + liste + websiteB);
|
server.send(200, "text/html", websiteA + liste + websiteB);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue