Ok, look's like you still think your board is not the issue.
Please try this snippet and if it doesn't work you might be better with a different board.
var Wifi = require('Wifi'); var ssid = '<replace with your ssids name>'; var password = '<replace with your password>'; Wifi.stopAP(); Wifi.setConfig({phy : '11n', powersave : 'none'}); Wifi.connect(ssid, {password:password}, function(err) { if (err) { console.log('Wifi.connect(err):', err); } else { console.log('connected'); Wifi.save(); } });
is [ ]
@MaBe started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Ok, look's like you still think your board is not the issue.
Please try this snippet and if it doesn't work you might be better with a different board.