1
0
mirror of https://github.com/s00500/ESPUI.git synced 2024-11-22 09:10:54 +00:00

#63 add variabbles to public scope of espui

This commit is contained in:
Lukas Bachschwell 2019-12-27 16:30:15 +01:00
parent fe45ed8010
commit bcddcfc311
Signed by: lbsadmin
GPG Key ID: CCC6AA87CC8DF425

View File

@ -171,6 +171,9 @@ public:
jsonUpdateDocumentSize = 2000; jsonUpdateDocumentSize = 2000;
jsonInitialDocumentSize = 8000; jsonInitialDocumentSize = 8000;
} }
unsigned int jsonUpdateDocumentSize;
unsigned int jsonInitialDocumentSize;
void setVerbosity(Verbosity verbosity); void setVerbosity(Verbosity verbosity);
void begin(const char *_title, const char *username = nullptr, const char *password = nullptr); // Setup server and page in Memorymode void begin(const char *_title, const char *username = nullptr, const char *password = nullptr); // Setup server and page in Memorymode
void beginSPIFFS(const char *_title, const char *username = nullptr, const char *password = nullptr); // Setup server and page in SPIFFSmode void beginSPIFFS(const char *_title, const char *username = nullptr, const char *password = nullptr); // Setup server and page in SPIFFSmode