Ok so now I have this very simple piece of my implementation and i'm still getting this dreaded error:
New interpreter error: FIFO_FULL
All I'm doing is the following:
const wifi = require('Wifi'); const WIFI_NAME = 'BTHub6-3TFX'; const WIFI_OPTIONS = { password : 'mypassword' }; function onInit() { wifi.connect(WIFI_NAME, WIFI_OPTIONS, (err) => { if (err) { console.log('Connection error: '+err); return; } console.log('Connected!'); }); }
I really don't understand why it just throws this error when I do anything with Wifi now, this was all working the other day.
Any ideas guys?
@Coder2012 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 so now I have this very simple piece of my implementation and i'm still getting this dreaded error:
All I'm doing is the following:
I really don't understand why it just throws this error when I do anything with Wifi now, this was all working the other day.
Any ideas guys?