I use nanoframefork & vs2019 to write firmware for my esp32 device. version mscorelib 1.10.5 (my device does not support version higher) The trouble is about to get the list of wifi networks, when device is in AP mode. If use the code in example (https://github.com/nanoframework/Samples/blob/main/samples/Wifi/ScanWiFi/Program.cs):
WiFiAdapter wifi = WiFiAdapter.FindAllAdapters()[0];
the WiFiAdapter wifi is NULL. It is null because there is no configured wifi interfaces (Wireless80211). How can I scan wifi networks, when my ESP32 is in AP mode?