Giter Club home page Giter Club logo

gsmjs's Introduction

GSM.js (Based on SIM900js)

A Javascript library for the GSM/GPRS based on the sim900js library: https://github.com/sensamo/sim900js

Differences between SIM900js and GSMjs

  • HTTP GET/POST use same function
  • Commands return array of lines from the raw response
  • Commands that have response data now properly include the data
  • Improved response handling
  • Constructor has default values now
  • HTTP response isn't treated as an error now. The response is broken out into separate array items for easier access.
  • HTTPS support
  • Retry initial AT connect 3 times
  • On connect, load device information - useful for debugging and verifying everything is working
  • No longer errors out if HTTP service is already initialized.
  • Added command for getting signal strength.

GSM.js does not have SMS functionality. I didn't need it for my project and didn't get a chance to test it.

Usage

var gsm = new GSM();
gsm.connect(function(err) {
    if(err) return console.log('Error connecting to GSM', err);
    console.log('GSM connected');
    gsm.status(function(err, resp, raw){
       console.log('Status...' + raw[1] + ',' + raw[2]); 
       gsm.initialize(function(err, resp, raw){           
            // Do things here
       });
    });
});

HTTP GET

gsm.request('https://httpbin.org/ip', function(response) {
    console.log('-> ' + response);
});

HTTP POST

gsm.request('https://httpbin.org/post',
  {
      method: 1,
      data: JSON.stringify(data),
      contentType: 'application/json'
  }, function(response) {
      console.log('-> ' + response);
});

gsmjs's People

Contributors

tylerm89 avatar

Watchers

James Cloos avatar Moch Ma'ruf Amien avatar

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.