const char* ssid = "theNetwork";
const char* password = "secretPassword";
and us them like this:
WiFi.begin(ssid, password);
But if you like to contact with a WiFi network where you also need to ad a user, how do you do then?
Can you do something like this:
const char* ssid = "theNetwork";
const char* password = "myUser:secretPassword";
WiFi.begin(ssid, password);
Or shall I use some other technique?