rusty.labs
rusty.labs
Try `stratum-ping.exe -t stratum1 -tls ru-eth.hiveon.net:24443`
Still feels like a bug, usage does not say that server name parameter should be the last one, and usually order of parameters is not important for console apps.
Yeah, if I don't use setBreakAfterConfig my callback is not even called
Ok there're multiple issues Settings are not saved if no successful connection occurred, ``` WiFi.persistent(true); ret = WiFi.begin(ssid.c_str(), pass.c_str(), 0, NULL, connect); WiFi.persistent(false); ``` So I toggled off `wm.setSaveConnect(false);` I...
I uploaded the fix addressing UI issue and saving empty ssid
For the sake of consistency it'd be better to use value instead of a placeholder, since custom parameters are using values I also checked behavior on my router in client...
Sending SSID in a plain text is totally fine. # > saveConfigCallback() and not using return or status? Just Curious Yeah, I can restart after connection complete too, I just...
Password has the same problem - Provide correct ssid and pass, save - Load configuration portal again - Change custom parameters - Save - Can't connect to WiFi because password...
Ok I fixed all the issues above in my fork https://github.com/rusty-labs/WiFiManager/blob/981a540793fd1c1b501be7f6071da42fe5aaa3de/WiFiManager.cpp#L2110C3-L2116C4 https://github.com/rusty-labs/WiFiManager/blob/981a540793fd1c1b501be7f6071da42fe5aaa3de/wm_strings_en.h#L66 https://github.com/rusty-labs/WiFiManager/blob/981a540793fd1c1b501be7f6071da42fe5aaa3de/WiFiManager.cpp#L1293C3-L1303C4 I did some other fixes but I think these 3 should be sufficient to solve the problem
It has nothing to do with a browser 1. _ssid = server->arg(F("s")); returns empty ssid, because it's a placeholder not a value 2. handleWifiSave() makes _ssid empty 3. connect=true 4....