You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On ESP32 the "Press SPACE BAR to enter terminal based configuration...." is working fine.
But with latest release downloaded from github for ESP8266 it's not working.
It's always jumping to "skipped" after timeout.
Te code portion I think is:
//Allow user to press SPACE BAR key on serial terminal
//to enter text based WIFI setup
SERIAL_DATA.print(F("\r\n\r\n\r\nPress SPACE BAR to enter terminal based configuration...."));
for (size_t i = 0; i < (3000 / 250); i++)
{
SERIAL_DATA.print('.');
while (SERIAL_DATA.available())
{
int x = SERIAL_DATA.read();
//SPACE BAR
if (x == 32)
{
TerminalBasedWifiSetup(SERIAL_DATA);
}
}
delay(250);
}
The text was updated successfully, but these errors were encountered:
On ESP32 the "Press SPACE BAR to enter terminal based configuration...." is working fine.
But with latest release downloaded from github for ESP8266 it's not working.
It's always jumping to "skipped" after timeout.
Te code portion I think is:
//Allow user to press SPACE BAR key on serial terminal
//to enter text based WIFI setup
SERIAL_DATA.print(F("\r\n\r\n\r\nPress SPACE BAR to enter terminal based configuration...."));
for (size_t i = 0; i < (3000 / 250); i++)
{
SERIAL_DATA.print('.');
while (SERIAL_DATA.available())
{
int x = SERIAL_DATA.read();
//SPACE BAR
if (x == 32)
{
TerminalBasedWifiSetup(SERIAL_DATA);
}
}
delay(250);
}
The text was updated successfully, but these errors were encountered: