Okay, so I as well have purchased an arduino UNO WiFi R4, and I keep coming back to this post and 'the other one' (the post someone made in july about the same issue), and searching othe similar topics for any kind of hint about how to make the UNO R4 connect as a client to a WPA2 Enterprise network. Even started diving into the core code WiFiS3/WiFiNINA and their refrenced libraires, and I finally came across this little tid bit when looking into more detail of the WiFi Chip used in the uno R4:
"Note:
ESP32-S3 supports Wi-Fi Enterprise only in station mode."
the UNO r4 uses the ESP32-S3. 'Station mode' is when the UNO is configured to act as a an ACCESS POINT.
So, anyone who knows more, please correct me if I'm wrong, it is NOT possible to connect the UNO R4 to a WPA2 enterprise network as a client. The WiFi chipset isn't capable of it. This is why the included examples for the UNO R4 in WiFiS3 do not incliude the standard beginenterprise method, like the WIFiNINA libraries do, and partially why those libraries are not compatible.
so D4MN !T... this is a wall for my project, i'll need a different arduino configuration that actually works with WPA2 enterprise as a client, my UNO R4 will jiust collect dust I guess.
Perhaps you can bring your own WiFi router. If you don't need the internet, that might work. An other idea is use your smartphone's tethering. I have done that before and you will have access to the internet if you need it. Another one is you could set up a local PC to be WiFi web server. There are several options depending on what you are doing.
fortunately, I'm lucky enough that my institution also runs an unsecured IoT wifi network that grants access based on registered MAC addresses.
Considering the WPA2 enterprise doesn't seem doable with the UNO R4 I've made the change to that network instead. Less secure but I'm only using the UNO R4 to monitor some MLX-IR temp sensors in a production environment.
FWIW, here's a WiFi Enterprise example for pure ESP32 boards, which does not include the R4 WiFi. The example is plain C ESP-IDF, so it should be adaptable to Arduino.