Last active
July 10, 2017 11:03
-
-
Save murilopontes/8363286 to your computer and use it in GitHub Desktop.
programmatically connect to WiFi access points
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// from https://github.com/DigiExam/simplewifi | |
using SimpleWifi; | |
// Wifi object | |
Wifi wifi = new Wifi(); | |
// get list of access points | |
IEnumerable<AccessPoint> accessPoints = wifi.GetAccessPoints(); | |
// for each access point from list | |
foreach (AccessPoint ap in accessPoints){ | |
//check if SSID is desired | |
if (ap.Name.StartsWith("ardrone_")){ | |
//verify connection to desired SSID | |
if (!ap.IsConnected){ | |
//connect if not connected | |
AuthRequest authRequest = new AuthRequest(ap); | |
ap.Connect(authRequest); | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It doesnt work for wifi without password, how can we pass the password?