Different menu for ESP8266 and ESP32

This commit is contained in:
Gunnar Skjold
2021-11-18 20:28:29 +01:00
parent e7f3217d7b
commit e78d59c31a
3 changed files with 124 additions and 1 deletions

View File

@@ -4,7 +4,16 @@
#include "hexutils.h"
#include "AmsData.h"
#include "root/head_html.h"
#if defined(ESP8266)
#include "root/head8266_html.h"
#define HEAD_HTML HEAD8266_HTML
#define HEAD_HTML_LEN HEAD8266_HTML_LEN
#elif defined(ESP32)
#include "root/head32_html.h"
#define HEAD_HTML HEAD32_HTML
#define HEAD_HTML_LEN HEAD32_HTML_LEN
#endif
#include "root/foot_html.h"
#include "root/index_html.h"
#include "root/application_js.h"