I'm using ESP01S module to connect wifi
I'm using Arduino IDE to upload the code
I'm trying to connect the "eduroam" wifi which is public wifi but I know "username" and "password" (I uploaded picture of wifi but I don't know how to attach in this line sry..)
The problem is I can't put my "username" parameter for connecting wifi
In arduino ESP8266WiFi.h library, it only have parameter for ssid and password like this.
WiFi.begin(ssid, password);
I googled quite a lot for the method but I couldn't find any solution
So the question is, is there any way to put "username" along with ssid and password like this?
WiFi.begin(ssid, username, password);
Thank you