We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WiFi scanning results in all networks showing as OPEN security.
Console snip: { ssid: 'XXXXXX', bssid: 'xx:xx:xx:xx:xx:xx', security: 'OPEN', rssi: -46, channel: 1 },
Test code: const { WiFi } = require('wifi'); const wifi = new WiFi();
wifi.scan((err, scanResults) => { if (err) { console.error(err); } else { console.log(scanResults); } });
The text was updated successfully, but these errors were encountered:
Let me check this issue.
Sorry, something went wrong.
[pico-w] Wifi auth is always OPEN.
0fa8b26
- Wifi scan auth value issue is fixed. - #564
communix
No branches or pull requests
WiFi scanning results in all networks showing as OPEN security.
Console snip:
{
ssid: 'XXXXXX',
bssid: 'xx:xx:xx:xx:xx:xx',
security: 'OPEN',
rssi: -46,
channel: 1
},
Test code:
const { WiFi } = require('wifi');
const wifi = new WiFi();
wifi.scan((err, scanResults) => {
if (err) {
console.error(err);
} else {
console.log(scanResults);
}
});
The text was updated successfully, but these errors were encountered: