Skip to content

Instantly share code, notes, and snippets.

@ElectricImpSampleCode
Last active November 26, 2019 15:05
Show Gist options
  • Save ElectricImpSampleCode/d5aeed932acf7e45936d to your computer and use it in GitHub Desktop.
Save ElectricImpSampleCode/d5aeed932acf7e45936d to your computer and use it in GitHub Desktop.
Squirrel array clear() example
// Get all the local networks
local wlans = imp.scanwifinetworks();
local myWlan = null;
foreach (network in wlans) {
if (network.ssid == "hasdrubals_folly") {
// This is my network, so save it
myWlan = network;
break;
}
}
// Clear the local networks list
wlans.clear();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment