Get all the SSIDs around.
To use this on{X} Recipe, simply copy the code below and modify if needed.
//@author: Felipe Cruz | mail: felipecruz91@hotmail.es
device.network.on("wifiScan", function(result) {
var mObject = result.scanResults;
for(var i = 0; i < mObject.size() ; i++){
device.notifications.createNotification('SSID found: ' + mObject.get(i).SSID).show();
}
});
Views