WIFI Scanner Example
n = wifi.scan()
html "Number of network found = " html n for x = 1 to n html "<hr>" html wifi.ssid(x) html "," html wifi.rssi(x) html "," html wifi.bssid(x) next x |
This example will list all of the available wifi networks.
First it scans and gets the number of available wifi networks. Next it loops through and outputs to the web browser the network name, strength and mac address. |