Add functions to manage large files

That allow page bigger than 2500 octets to be displayed by splitting
automaticaly
Add table tags for easy management
This commit is contained in:
luc 2015-05-14 13:59:09 +08:00
parent 364e37f5ba
commit a1b7cbc84e
2 changed files with 4 additions and 1 deletions

Binary file not shown.

View File

@ -30,9 +30,12 @@ class WEBINTERFACE_CLASS
public:
WEBINTERFACE_CLASS (int port = 82);
ESP8266WebServer WebServer;
void flushbuffer();
void add4send(const char * data2send, bool bimmediatsend = false);
void urldecode(char *dst, const char *src);
private:
String buffer2send;
bool bsendingstarted;
};
extern WEBINTERFACE_CLASS web_interface;