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-Passwort do not accept characters like ";" #47

Open
AIXruth opened this issue Sep 25, 2022 · 1 comment
Open

Wifi-Passwort do not accept characters like ";" #47

AIXruth opened this issue Sep 25, 2022 · 1 comment

Comments

@AIXruth
Copy link

AIXruth commented Sep 25, 2022

Hi,

thanks for your work!

My WIFI_STA cannot connect, as my wifi password is wrong. I debugged the function ConfigureWifi() in global.h (see below) and found out, that my wifi password ends before the containing character ";". E.g. a password like 123;456, will be truncated 123.

Unfortunately I haven't found out, where it has been truncated.

void ConfigureWifi() in global.h:

...
  WiFi.mode(WIFI_STA);
+  String S1=config.password.c_str();
+ WriteLog("DEBUG:" + S1,true);
  WiFi.begin (config.ssid.c_str(), config.password.c_str());

Any clue, how to fix the small issue?

cheers
AIXruth

@AIXruth
Copy link
Author

AIXruth commented Sep 29, 2022

Fixed with #48

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

1 participant