WiFi RS21 on a Spider mainboard

I’m trying to get an RS21 WiFi module working on a FEZ Spider board. There’s example code in two places: the developers guide https://www.ghielectronics.com/docs/105/wifi-rs21-module (linked to from https://www.ghielectronics.com/catalog/product/282) and codeshare https://www.ghielectronics.com/community/codeshare/entry/361

Neither work for me. For example both use the method

wifi.Join(info, "MyPassword");

but I don’t have that method!

Where is any example code for the latest version of the RS21 WiFi module?

@ dumbledad - We will get the developers page updated as soon as possible. The interface methods have been moved to the interface object of the module:

wifi_RS21.Interface.Join()

Is where you will access that method

Thanks James. The line

WiFi_RS21.WiFiNetworkInfo myBSS = wifi.Search(myAP);

is odd as that method is not in the WiFi_RS21 class not the interface object’s class. What should that be? is it “Scan” again, and if so why scan again when the details were retrieved during the previous scan?