-
-
-
-
You might be right @DrAzzy, I'll get a new soldering iron but I already ordered two more Espruino boards. I was just wondering if you guys have any ideas what to do with the broken one?
-
-
-
I think I kill my Espruino while soldering the Bluetooth module. I can't connect to it anymore :(. I am able to set it to bootloader mode but that is it. When I try to connect the only response I get is:
connected
That is it. It really suck :( I ordered two more Espruinos after that huge disaster with the Bluetooth module. Any ideas on how to recover my broken one? or what can I do with it?
-
-
-
-
Now I am getting this error:
echo(0); =undefined ERROR: Timeout in CC3000 driver (4103) ERROR: Connect failed (err -1) Looks like CC3000 has died again. Power cycling... ERROR: Timeout in CC3000 driver (4103) ERROR: Connect failed (err -1) Looks like CC3000 has died again. Power cycling...
Do I have the wrong module?
This is what I got:
http://www.adafruit.com/products/1510This is what you guys recommend: http://www.adafruit.com/products/1469
Should I get the recommended one or the one I have is going to work?
-
This is what I am getting back from the console:
>echo(0); Initialising CC3000 Connecting... Done. =undefined
I guess what I am missing is the ability to respond to errors or just get a better feedback based on the connection status. What I mean is something like this:
console.log("Initialising CC3000"); var wlan = require("CC3000").connect(); console.log("Connecting..."); wlan.connect( "AccessPointName", "WPA2key", function (s) { console.log(s); if (s=="dhcp") { require("http").get("http://www.pur3.co.uk/hello.txt", function(res) { res.on('data', function(data) { console.log(">" + data); }); }); } }); wlan.on('error', function(e){ console.log('Cannot connect to access point'); console.log('Error: ' + e.message); }); console.log("Done.");
Otherwise, I have no idea what is going on with my module.
-
Ok, I'm looking forward to start using the Espruino again, the whole CC3000 issue was a turn off for me but now it seems that the problem is solved. Thanks guys