Wio Lte can't connect.

Posted on
  • Wio Lte doesn't succeed in connecting. Espruino Ide vers 1v95 says "

    digitalWrite(B2, 1); // Set the modem  power pin when Wio LTE board under v1.2
    var board;
    var APN = "CMNET";
    var USERNAME = "";
    var PASSWORD = "";
    
    function wiolteStart(debug_quectel, debug_at) {
      debug_quectel = debug_quectel || false;
      debug_at = debug_at || false;
    
      board = new require('wiolte').connect(function(err) {
        console.log("connectCB entered...");
    
        if (err) throw err;
        setTimeout(doConnect,3000);
      });
    
      board.debug(debug_quectel, debug_at);
    
    }
    

    Uncaught Error: Function "connect" not found!"

  • Hi - this doesn't look like the right code - there's a new in board = new require('wiolte').connect(function(err) {

    It's worth checking the code in http://www.espruino.com/WioLTE#using-lteĀ­-and-gps

    Also just to add, Seeed stopped supporting this board some time ago I'm afraid.

  • Post a reply
    • Bold
    • Italics
    • Link
    • Image
    • List
    • Quote
    • code
    • Preview
About

Wio Lte can't connect.

Posted by Avatar for user140891 @user140891

Actions