# mt7688-wifi-up

> Support psk2 and wep to connect the WiFi network.

Latest version **0.0.3** (published 2016-06-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install mt7688-wifi-up
pnpm add mt7688-wifi-up
yarn add mt7688-wifi-up
bun add mt7688-wifi-up
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2016-06-20 |
| First published | 2016-06-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Wesley Tsai |
| Maintainers | wtsai |
| Keywords | psk2, wep, mt7688, wifi |

## Links

- npm: https://www.npmjs.com/package/mt7688-wifi-up
- Repository: https://github.com/wtsai/mt7688-wifi-up
- Homepage: https://github.com/wtsai/mt7688-wifi-up#readme
- Issues: https://github.com/wtsai/mt7688-wifi-up/issues
- npm.io page: https://npm.io/package/mt7688-wifi-up

## Dependencies (1)

- [string](https://npm.io/package/string.md) ^3.3.1

## Recent versions

- 0.0.3 (latest) — 2016-06-20
- 0.0.2 — 2016-06-20
- 0.0.1 — 2016-06-20

## README

mt7688-wifi-up
=================

Connect the WiFi network for MTK 7688 duo.

Features
-

* Support the PSK and the WEP.

Installation
-

Install directly via NPM

```sh
$ npm install mt7688-wifi-up
```

Getting started
-

### Write the main application (app.js)

```sh
"use strict";
var WiFi = require('mt7688-wifi-up');
var List = [
  {enc: 'psk2', name: 'test1', passwd: 'test1'},
  {enc: 'wep', name: 'test2', passwd: '3434343434'},
  {enc: 'psk2', name: 'test3', passwd: 'test3'},
  {enc: 'psk2', name: 'test4', passwd: 'test4'},
  {enc: 'psk2', name: 'test5', passwd: 'test5'},
  {enc: 'psk2', name: 'test6', passwd: 'test6'},
]
var wifi = new WiFi();

wifi.uciscan(function(){
  wifi.cache(List, function(err, ap){
    wifi.uciset(function(){
      wifi.wifiup(function(){});
    });
  });
});
```

### Run the main application (app.js)

```sh
$ node app.js
```


License
-
Licensed under the MIT License

Authors
-
Copyright(c) 2016 Wesley Tsai<<wesleyboy42@gmail.com>>

---
_Source: https://npm.io/package/mt7688-wifi-up · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
