Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ESP8266 "Press SPACE BAR to enter terminal based configuration" not working #114

Open
dakoal opened this issue Jun 22, 2021 · 3 comments
Open

Comments

@dakoal
Copy link

dakoal commented Jun 22, 2021

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);
}

@stuartpittaway
Copy link
Owner

Have you used this on the esp8266 previously?

The code was merged from 32 to 8266 to try and maintain some resemblance of similarity, but I didn't publish that it was a working feature.

@dakoal
Copy link
Author

dakoal commented Jun 22, 2021

Ok, I didn‘t know that.

Only saw the line coming on booting.
Sorry for disturbing

@stuartpittaway
Copy link
Owner

I'm not saying it shouldn't work, but its probably not been tested/used!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants