-
Notifications
You must be signed in to change notification settings - Fork 47
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
Hardware reset #137
Comments
Yes please! The inability to reset the wifi password has wasted several hours. And it's silly to have to reprogram the system just to clear the wifi password. Imagine if your cellphone worked that way... |
This was part of 1.x...
It would make more sense to go into AP mode with a long press of the
external button via RAPI. And use the Reset/hardware button for factory
reset.
while (buttonState == LOW) {
buttonState = digitalRead(0);
erase++;
if (erase >= 5000) {
ResetEEPROM();
int erase = 0;
WiFi.disconnect();
Serial.print("Finished...");
delay(2000);
ESP.reset();
}
}
…On Apr 2, 2018 6:36 PM, "CliffStoll" ***@***.***> wrote:
Yes please! The inability to reset the wifi password has wasted several
hours. And it's silly to have to reprogram the system just to clear the
wifi password. Imagine if your cellphone worked that way...
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#137 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABvYH9AVB1XlajcEPQ_udxE-HK5z3bdlks5tktIzgaJpZM4RsvW2>
.
|
I have reprogrammed several boards this week due to forgotten passwords. Users are frustrated with the process to erase/reprogram. |
Noted, we'll get onto this. sorry for the hassle. |
Done, implemented in #180 |
Add the ability to clear all EEPROM settings by holding down a button (GPIO0 / boot) at startup to wipe all EEPROM settings and factory reset the device. Would be a fail safe for #118 or if the http authentication password has been forgotten.
A number of users are managing to lock themselves out of the device.
The text was updated successfully, but these errors were encountered: