In method MyNetwork::wifiBegin(bool silent) from network.cpp file, the function below will not connect if a password contain spaces.
WiFi.begin(config.ssids[ls].ssid, config.ssids[ls].password);
On the other hand it works with harcdoded passwords
WiFi.begin("MyNetork", "my pass word");
In method MyNetwork::wifiBegin(bool silent) from network.cpp file, the function below will not connect if a password contain spaces.
WiFi.begin(config.ssids[ls].ssid, config.ssids[ls].password);On the other hand it works with harcdoded passwords
WiFi.begin("MyNetork", "my pass word");