Hi 👋🏻
I have been struggling some time to connect my Arduino MKR1010 to the Arduino IoT Cloud by my university wifi network, which asks a username and password (WPA2 WiFi network).
For Arduino MKR1010, Arduino_ConnectionHandler establish a connection by creating a WiFi object from WiFiNINA and calling the method .begin(). This method only allows connections with WPA networks (SSID & Password).
If the method .beginEnterprise() from WiFiNINA was included in the class WiFiConnectionHandler fromArduino_WiFiConnectionHandler.cpp, it would be possible to connect to WPA2 Enterprise networks such as eduroam. Again, it only works for devices using WiFiNINA instead of WiFi101. I don’t know if there exists a similar method for the latter.
Lastly, I tried it myself and it works. It only took me minutes to update the code. And it doesn’t change what is made already.
Thanks for the nice library you created!
Hi 👋🏻
I have been struggling some time to connect my Arduino MKR1010 to the Arduino IoT Cloud by my university wifi network, which asks a username and password (WPA2 WiFi network).
For Arduino MKR1010,
Arduino_ConnectionHandlerestablish a connection by creating aWiFiobject fromWiFiNINAand calling the method.begin(). This method only allows connections with WPA networks (SSID & Password).If the method
.beginEnterprise()fromWiFiNINAwas included in the classWiFiConnectionHandlerfromArduino_WiFiConnectionHandler.cpp, it would be possible to connect to WPA2 Enterprise networks such as eduroam. Again, it only works for devices usingWiFiNINAinstead ofWiFi101.I don’t know if there exists a similar method for the latter.Lastly, I tried it myself and it works. It only took me minutes to update the code. And it doesn’t change what is made already.
Thanks for the nice library you created!