Chat freely about the open source Javascript projects for ESP8266

User avatar
By Bukvy
#93003 Helo! Try wifi.scan :
wifi = require("Wifi");
wifi.scan(function(err,ap_list){
if (err) {
console.log("result: error: "+err+"list: "+ap_list);
return;
}
console.log("Connected!"+"result2: error: "+err+"list: "+ap_list);

Why it always returns err= empty, ap_list undefined , if there are a lot of access points around?
Espuino v2.09
User avatar
By stumin
#93785 I've had the same problem with WeMos dev board. you can try Espruino on other esp8266 boards. I managed to do wifi.scan on an old NodeMcu board without problem. Give it a try.