// #define DEBUG_VIEW // The idea here is to debug HTML with DEBUG_VIEW defined then, when finished, // use one of the minify web applications to strip the comments and nice // formating spaces. Then update the minified version below. // // Also there are comment sections at the top and bottom of each block of HTML // code. The purpose is to move the lines of C code near by into the blocked // comment sections. Then you have a large block of continguious HTML that can // be copy/pasted into one of the online web HTML checkers. You can adjust the // code there till it is correct then copy/paste back here. Then, you can move // comment boarders around until the C code is back in place. #ifdef DEBUG_VIEW static const char configHead[] PROGMEM = R"EOF( WiFi )EOF"; #else static const char configHead[] PROGMEM = R"EOF(WiFi )EOF"; #endif #ifdef DEBUG_VIEW static const char configPresetInput[] PROGMEM = R"EOF( )EOF"; #else static const char configPresetInput[] PROGMEM = R"EOF()EOF"; #endif #ifdef DEBUG_VIEW static const char configConnection[] PROGMEM = R"EOF(

WiFi Details and Config

You are connected through the {w}

)EOF"; #else static const char configConnection[] PROGMEM = R"EOF(

WiFi Details and Config

You are connected through the {w}

)EOF"; #endif #ifdef DEBUG_VIEW static const char configAPInfo[] PROGMEM = R"EOF(

SoftAP Details

SSI{s}
BSSID {b}
IP{i}
STACount: {a}
)EOF"; #else static const char configAPInfo[] PROGMEM = R"EOF(

SoftAP Details

SSI{s}
BSSID {b}
IP{i}
STACount: {a}
)EOF"; #endif #ifdef DEBUG_VIEW static const char configWLANInfo[] PROGMEM = R"EOF(

WLAN Details

SSID{s}
BSSID {b}
CH{c}
PHY{p}
RSSI{r}
IP{i}
GW{g}
Mask{m}
DNS1{1}
DNS2{2}
)EOF"; #else static const char configWLANInfo[] PROGMEM = R"EOF(

WLAN Details

SSID{s}
BSSID {b}
CH{c}
PHY{p}
RSSI{r}
IP{i}
GW{g}
Mask{m}
DNS1{1}
DNS2{2}
)EOF"; #endif #ifdef DEBUG_VIEW static const char configWLANOffline[] PROGMEM = R"EOF(

WLAN - offline

)EOF"; #else static const char configWLANOffline[] PROGMEM = R"EOF(

WLAN - offline

)EOF"; #endif #ifdef DEBUG_VIEW static const char configList[] PROGMEM = R"EOF(

WLAN Network List

(refresh if any are missing)

)EOF"; #else static const char configList[] PROGMEM = R"EOF(

WLAN Network List

(refresh if any are missing)

Network Name/SSID CH RSSI
)EOF"; #endif #ifdef DEBUG_VIEW static const char configItem[] PROGMEM = R"EOF( )EOF"; #else static const char configItem[] PROGMEM = R"EOF()EOF"; #endif #ifdef DEBUG_VIEW static const char configNoAPs[] PROGMEM = R"EOF( )EOF"; #else static const char configNoAPs[] PROGMEM = R"EOF()EOF"; #endif #ifdef DEBUG_VIEW static const char configEnd[] PROGMEM = R"EOF(
Network Name/SSIDCHRSSI
{s} {c} {l} {r}
{s}{c}{l}{r}
No WLAN found
No WLAN found

Connect to Network:



)EOF"; #else #endif #ifdef DEBUG_VIEW static const char configEnd2[] PROGMEM = R"EOF(   👁


You may want to return to the home page.

)EOF"; #else static const char configEnd[] PROGMEM = R"EOF(

Connect to Network:



  👁


You may want to return to the home page.

)EOF"; #endif