You are reading a single comment by @Coder2012 and its replies. Click here to read the full conversation.
  • 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?

About

Avatar for Coder2012 @Coder2012 started