Hi everyone!
I'm trying to use my Pico + CC3000 using non-default pins (not B6-B8).
In failing to do this, I tried just this:
var wlan = require("CC3000").connect(SPI1, B6, B7, B8);
...which hangs!
But this:
var wlan = require("CC3000").connect();
...works great! Takes about four seconds.
Am I using the API incorrectly?
Thanks everyone!
P.S. I tried this too:
var wlan = require("CC3000").connect(SPI1, {cs:B6, en:B7, irq:B8});
Also hangs.
@TheAlchemist 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.
Hi everyone!
I'm trying to use my Pico + CC3000 using non-default pins (not B6-B8).
In failing to do this, I tried just this:
...which hangs!
But this:
...works great! Takes about four seconds.
Am I using the API incorrectly?
Thanks everyone!
P.S. I tried this too:
Also hangs.