In the handleRoot() function:
I have:
void handleRoot() {
server.send(200, "text/plain", "hello from esp8266! (blinking LED!)"); // first line
server.send(200, "text/plain", "Further text..."); //second line
}
But I only see the first line in the browser when handleRoot gets called.
If I comment out the first line then the second line gets sent.
What am I not understanding?
thanks
Russell