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

Adding custom and masked password fields in the AP Config page for custom password variables - Solution to issue #33 #34

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Update WiFiSettings.h
  • Loading branch information
Valdez-x authored Jan 7, 2024
commit 2a07607fded0d453ca30a90b73d44704168c8d4d
1 change: 1 addition & 0 deletions WiFiSettings.h
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ class WiFiSettingsClass {
String string(const String& name, const String& init = "", const String& label = "");
String string(const String& name, unsigned int max_length, const String& init = "", const String& label = "");
String string(const String& name, unsigned int min_length, unsigned int max_length, const String& init = "", const String& label = "");
String passwordstring(const String& name, const String& init = "", const String& label = "");
long integer(const String& name, long init = 0, const String& label = "");
long integer(const String& name, long min, long max, long init = 0, const String& label = "");
bool checkbox(const String& name, bool init = false, const String& label = "");