Hey @peekay123,
Never mind. Answered here:
How would you set the core to associate with multiple WiFi networks? I know I can set credentials but does this not overwrite previous credentials? For instance if I code the following will the core associate with one of these networks when they are in range:
WiFi.setCredentials("homeNetwork", "superSecret");
WiFi.setCredentials("workNetwork", "1234567890");
WiFi.connect();
while(!WiFi.ready());
Serial.print("Connected to: ");
Serial.println(WiFi.SSID());
In this example the module would be in my car powered by a battery. I want it to connect to the network when I get to work and to my home network when I get home. Is this possible? You say it can store up to 7 SSID/Password combinations but cannot find an example use case for multiple networks.
Thanks