1.0.13 • Published 4 years ago

huawei-wingle-4g v1.0.13

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

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 :

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 ...
1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago