This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathindex.js
58 lines (50 loc) · 1.59 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
'use strict';
import { NativeModules } from 'react-native';
function connect(...args) {
if (args.length < 2 || args.length > 3) {
throw new TypeError('invalid arguments');
} else if (args.length === 2) {
NativeModules.IOTWifi.connect(args[0], false, args[1]);
} else {
NativeModules.IOTWifi.connect(...args);
}
}
function connectSecure(...args) {
if (args.length < 4 || args.length > 5) {
throw new TypeError('invalid arguments');
} else if (args.length === 4) {
NativeModules.IOTWifi.connectSecure(args[0], args[1], args[2], false, args[3]);
} else {
NativeModules.IOTWifi.connectSecure(...args);
}
}
function removeSSID(...args) {
if (args.length < 2 || args.length > 3) {
throw new TypeError('invalid arguments');
} else if (args.length === 2) {
NativeModules.IOTWifi.removeSSID(args[0], false, args[1]);
} else {
NativeModules.IOTWifi.removeSSID(...args);
}
}
function getSSID(...args) {
NativeModules.IOTWifi.getSSID(...args);
}
function isApiAvailable(...args) {
NativeModules.IOTWifi.isApiAvailable(...args);
}
module.exports = {
connect: connect,
connectSecure: connectSecure,
getSSID: getSSID,
isApiAvailable: isApiAvailable,
removeSSID: removeSSID,
};
/**
* (un)bindNetwork only affects Android
* isApiAvailable(Callback callback)
* connect(String ssid, Boolean bindNetwork = false, Callback callback)
* todo: connectSecure(String ssid, String passphrase, Boolean isWEP, Boolean bindNetwork = false, Callback callback)
* removeSSID(String ssid, Boolean unbindNetwork = false, Callback callback)
* getSSID(Callback callback)
*/