wifi-control-node
wifi-control-node copied to clipboard
A NodeJS module that allows you to scan for, connect to and disconnect from wireless access points near the server. Great for offline or local apps.
I get this error: **WiFiControl: Encountered an error while searching for wireless interface: [object Object] WiFiControl: You cannot scan for nearby WiFi networks without a valid wireless interface.** Because the...
Since relying on _node-wifiscanner2_ cannot actively discover newly added SSID while scanning.
If using via util.promisify, connectToAP loses _this scope `let conn = await util.promisify(wifi.connectToAP)({ssid:'MySSID', password:'MyPassword'});` fails with > _this.getIfaceState is not a function since _this is **global** scope when being executed...
Closes https://github.com/msolters/wifi-control-node/issues/37
**O.S**: Windows 10 **wifi-control**: 2.0.1 My WiFi network name is `GO_DEV 9584!"Q$·&/()` and wifi-control fails to create/find .xml file (https://github.com/msolters/wifi-control-node/blob/master/src/win32.coffee)
**O.S:** Windows 10 ¿Couldn't `WiFiControl.scanForWiFi` return the security of each network too? Like "Open", "WPA", etc..?
If there was an API to get wifi into AP mode - we could do so many useful things with it... Do you think is it possible, at least for...
Hi, First, thank you for your nice work. I have been playing around, but I can't seem to be able to detect my iPhone / Android device. I want to...
Some variants of embedded linux (e.g. Debian on the CHIP Pro) seg fault when you scan for SSIDs, and the host has at least one `wlan*` interface disabled. By stipulating...
In my case I would need to perform this: 1. Get currently connected SSID 2. Connect to a specified network 3. Perform some operations 4. Reconnect to original SSID, without...