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.
34 lines
632 B
34 lines
632 B
#include <esp8266.h>
|
|
#include <httpd.h>
|
|
|
|
#include "cgi_main.h"
|
|
#include "screen.h"
|
|
|
|
/**
|
|
* Main page template substitution
|
|
*
|
|
* @param connData
|
|
* @param token
|
|
* @param arg
|
|
* @return
|
|
*/
|
|
httpd_cgi_state ICACHE_FLASH_ATTR tplScreen(HttpdConnData *connData, char *token, void **arg)
|
|
{
|
|
if (token == NULL) {
|
|
// Release data object
|
|
screenSerializeToBuffer(NULL, 0, arg);
|
|
return HTTPD_CGI_DONE;
|
|
}
|
|
|
|
const int bufsiz = 512;
|
|
char buff[bufsiz];
|
|
|
|
if (streq(token, "screenData")) {
|
|
httpd_cgi_state cont = screenSerializeToBuffer(buff, bufsiz, arg);
|
|
httpdSend(connData, buff, -1);
|
|
return cont;
|
|
}
|
|
|
|
return HTTPD_CGI_DONE;
|
|
}
|
|
|
|
|