Description
I have been asked to raise an issue here but I have never done this before so forgive any errors in formatting, etc.
I have a Giga R1 and the accompanying display and wanted to get the time from an NTP server. I therefore followed the official Arduino examples shown here: https://docs.arduino.cc/tutorials/giga-r1-wifi/giga-wifi
I found that I could make a WPA connection using...
status = WiFi.begin(ssid, pass);
...but that when I tried to make a WEP connection by adding the network index number like this:
status = WiFi.begin(ssid, keyIndex, pass);
...I got a compilation error.
I raised this on the Arduino Forum here https://forum.arduino.cc/t/giga-wifi-not-working/1207373 and a helpful person called stevebeswick replied saying that "the .begin() for WEP is in Wifi.h but is not implemented in Wifi.cpp" and suggested that I should raise an issue here about it - which I have now done.
I hope this provides all necessary information.