Page 1 of 1

Setting up mobile Wifi Connection

Posted: Thu Jan 06, 2022 12:54 pm
by simon.schvartzman
Hi guys, given I know the Wifi credentials (SSID and PW) I want to connect to, can I do it under LC control? Meaning without having to manually do it via the OS?

In order to minimize as much as possible user's clicks the goal is to have the APP automatically connect to the preferred Wifi network no matter how many networks are available...

Suggestions are very welcomed!

Thanks

Re: Setting up mobile Wifi Connection

Posted: Sun Jan 23, 2022 12:27 pm
by trevix
For what i can see, on iOS there are only 2 lines of C code:

Code: Select all

var config = new NEHotspotConfiguration(Ssid, Pw, false);
config.JoinOnce = false;
https://stackoverflow.com/questions/363 ... d-password
If only LCB was be a little more easy to understand...