The esp8266 keeps resetting and that seems to be an issue with storage in Program memory causing a corruption to the main code.
I read the post at https://www.esp8266.com/viewtopic.php?p=48388 But there it uses server.send(...) as my code from the example is doing.
As I understand it, I need to use:
server.send_P(200, "text/html", s );
rather than:
server.send(200, "text/html", s );
I'm getting an error saying that send_P expects 4 arguments.
Can anyone advise how to correctly send a page from prog memory?
thanks
Russell