forked from mstrens/grbl_controller_esp32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
browser.h
31 lines (29 loc) · 860 Bytes
/
browser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef browser_h
#define browser_h
void HomePage();
void File_Download();
void DownloadFile(String filename) ;
void File_Upload();
void handleFileUpload();
void File_Stream();
void File_Delete();
void SD_file_delete(String filename) ;
void sd_dir();
void printDirectory(const char * dirname, uint8_t levels) ;
void SendHTML_Header();
void SendHTML_Content();
void SendHTML_Stop();
void reportError(String textError);
void SelectInput(String heading1, String command, String arg_calling_name , String initialValue);
String file_size(int bytes) ;
void initWifi() ;
void processWifi(void);
void P( char * text) ;
void append_page_header() ;
void append_page_footer();
boolean getWifiIp( char * ipBuf ) ;
void confirmDelete();
void confirmDownload() ;
void retrieveWifiParam(void) ;
boolean checkWifiOnSD(void) ;
#endif