huawei-wingle-4g
TypeScript icon, indicating that this package has built-in type declarations

1.0.13 • Public • Published

Overview

This is a module NodeJS allowing to drive Huawei Wingle 4G. This module can :

  • get connection state
  • enable or disable mobile data
  • send/read/remove SMS or store it in draft
  • send/reply USSD code and get response

Conception

This module is oriented to follow admin user interface. It treats 4 essential pages :

Pages

Get started

First thing is to install the module from :

npm install huawei-wingle-4g

Import class HuaweiWingle4G like :

const { HuaweiWingle4G } = require('huawei-wingle-4g');

Create an instance of HuaweiWingle4G :

const username = 'your username on admin user interface';
const password = 'your password on admin user interface';
 
const huaweiWingle4G = new HuaweiWingle4G(username, password);

Let's get network information. In this case, we will use Home found in HuaweiWingle4G.

const home = huaweiWingle4G.getHome();
const network = await home.getNetwork();
console.log(network);

This will print something like this:

{
  type: '4G',
  operator: 'TELMA',
  signal: { strength: 1, total: 5 },
  status: 3
}

State

  • Base features implemented
  • Documentation in progress ...

Readme

Keywords

Package Sidebar

Install

npm i huawei-wingle-4g

Weekly Downloads

1

Version

1.0.13

License

MIT

Unpacked Size

193 kB

Total Files

155

Last publish

Collaborators

  • razafinarivohanania