-
Notifications
You must be signed in to change notification settings - Fork 11
/
requestConfig.js
38 lines (31 loc) · 901 Bytes
/
requestConfig.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
const nubli = require('../dist/index.js').default;
nubli.setDebug(true);
nubli.onReadyToScan()
.then(() => {
console.log("Ready to scan :)");
nubli.startScanning();
})
.catch((err) => {
console.log(err);
});
nubli.on("smartLockDiscovered", async (smartlock) => {
nubli.stopScanning();
smartlock.on("connected", () => {
console.log("connected");
});
if (smartlock.configExists()) {
await smartlock.readConfig();
}
smartlock.connect()
.then(async () => {
if (smartlock.paired) {
console.log("Good we're paired");
let config = await smartlock.requestConfig();
console.log(config);
} else {
console.log("Pair first :(");
}
await smartlock.disconnect();
process.exit(0);
});
});