wifi-control-node icon indicating copy to clipboard operation
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.

Results 38 wifi-control-node issues
Sort by recently updated
recently updated
newest added

Wireless interface name filter on linux $ nmcli -m multiline device status | grep wlan $ nmcli -m multiline device status | grep wl DEVICE: wlp6s0 I believe the command...

In a non-english linux system the output of the nmcli is different from the english one. I added a little workaround that set the default locale in ascii before the...

Here's a quick fix to support any wifi interface name on linux: [linux.js.txt](https://github.com/msolters/wifi-control-node/files/537694/linux.js.txt) The wifi interface name on my linux device is "wlp1s0", so searching for "DEVICE:\s+wl" works, but the...

Older OS's such as Raspbian Wheezy has a more limited version of nmcli that does not accept device as a parameter, it does accept dev though. I have also checked...

``` WiFiControl.init({ debug: true }); WiFiControl.scanForWiFi( function(err, response) { if (err) res.send(err); console.log(response); }); ``` always return 0 network found

Seems to be the expected behavior based [on the code](https://github.com/msolters/wifi-control-node/blob/master/src/win32.coffee#L235) but not on the docs, that state "powering down and back up..." Only way to achieve the expected behavior is...

hello, first thanks to you opening such good module for us. Is that possible to know the user input valid ssid/psk or not without wifi connection? If the user input...

I'm having difficulty connecting to a hidden network if I haven't already introduced the network to the system via `nmcli con add ...` (on Raspberry Pi 3 with Raspbian Jessie...

Hi! There is an example to config with static ip?