kaluma-project / kaluma

A tiny JavaScript runtime for RP2040 (Raspberry Pi Pico)
https://kalumajs.org
Apache License 2.0
648 stars 37 forks source link

WiFi Scan-All networks return OPEN #564

Closed ghost closed 1 year ago

ghost commented 1 year ago

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); } });

communix commented 1 year ago

Let me check this issue.