-
• #2
Make sure the access point E2 offers 802.11 b/g/n.
Use Wifi.scan() to list available access points
-
• #3
[ ]
1 Attachment
-
• #4
var wifi = require("Wifi");
wifi.scan((ap)=>print(ap));[ ] array 空数组
-
• #5
Use Wifi.scan() in ESp32 is OK
-
• #6
in esp8266 is [ ]
-
• #7
Screen say you run Espruino 2v12 - correct?
-
• #8
continue in #comment 16406698
-
• #9
Do you speak chinese ?
-
• #10
No hotspots were scanned ,is [ ]
-
• #11
continue error during connect: no_ap_found
-
• #12
No, just used google translation service ;-)
-
• #13
Look at this
1 Attachment
var wifi = require("Wifi");
wifi.connect("XXXX", {password:"XXXXXX"}, function(e) {
if (e) {
} else {
}
});
1 Attachment