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

WiFi tweaks (including enable/disable WiFi feature) #111

Merged
merged 2 commits into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions firmware/keira/src/apps/ftp/ftp_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ String FTPServerApp::createPassword() {
password[pwdLen] = '\0';

Preferences prefs;
prefs.begin("ftp", false);
prefs.begin("keira", false);
prefs.putString("password", password);
prefs.end();

Expand All @@ -79,7 +79,7 @@ String FTPServerApp::createPassword() {

String FTPServerApp::getPassword() {
Preferences prefs;
prefs.begin("ftp", true);
prefs.begin("keira", true);
String password;
if (!prefs.isKey("password")) {
password = "";
Expand Down
96 changes: 48 additions & 48 deletions firmware/keira/src/apps/icons/battery.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified firmware/keira/src/apps/icons/battery.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading