You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
535 B
15 lines
535 B
#ifndef CGI_PING_H
|
|
#define CGI_PING_H
|
|
|
|
#include <esp8266.h>
|
|
#include <httpd.h>
|
|
|
|
httpd_cgi_state cgiPing(HttpdConnData *connData);
|
|
httpd_cgi_state cgiResetDevice(HttpdConnData *connData);
|
|
httpd_cgi_state cgiSystemCfgSetParams(HttpdConnData *connData);
|
|
httpd_cgi_state tplSystemCfg(HttpdConnData *connData, char *token, void **arg);
|
|
httpd_cgi_state cgiResetScreen(HttpdConnData *connData);
|
|
httpd_cgi_state cgiGPIO(HttpdConnData *connData);
|
|
httpd_cgi_state tplGpio(HttpdConnData *connData, char *token, void **arg);
|
|
|
|
#endif // CGI_PING_H
|
|
|