Giter Site home page Giter Site logo

Comments (3)

emilsedgh avatar emilsedgh commented on July 19, 2024
modem.execute('AT+CUSD=1,"*137#",15', function(err, response) {
   console.log('USSD Response:', response)
});

Although, this package comes with a real nice USSD API you can use. Check out the readme flie.

from modem.

hervedelmas avatar hervedelmas commented on July 19, 2024

ok have the ‘OK’ response but where is the message back of the operator ?

thanx in advance !

Hervé Delmas ツ
+24107795991
wax-gabon.com

Le 10 oct. 2014 à 18:15, Emil Sedgh [email protected] a écrit :

Closed #13.


Reply to this email directly or view it on GitHub.

from modem.

emilsedgh avatar emilsedgh commented on July 19, 2024

USSD is a bit more complicated than that. That's why I said you should use the USSD class provided. Here is how you should actually do it:

var Modem = require('modem');
var modem = Modem.Modem();

var session = Modem.Ussd_Session();
var gotResponse = function() {
  console.log('Arguments', arguments);
}

session.execute = function() {
  console.log('Starting USSD Session');
  session.query('*137#', gotResponse);
  session.on('close', function() {
    console.log('USSD Session Closed');
  });
}

modem.open('/dev/ttyUSB0', function() {
  modem.ussd_pdu = false;
  session.modem = modem;
  session.start();
});

from modem.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.