-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconnectTest.js
41 lines (30 loc) · 863 Bytes
/
connectTest.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
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);
});
let start;
nubli.on("smartLockDiscovered", async (smartlock) => {
nubli.stopScanning();
smartlock.on("connected", () => {
start = new Date();
console.log("connected");
setInterval(async () => {
let lockState = await smartlock.readLockState();
console.log(lockState);
}, 5000);
});
smartlock.on("disconnected", () => {
let end = new Date() - start;
console.log("disconnected after: ", end, "ms");
})
if (smartlock.configExists()) {
await smartlock.readConfig();
}
smartlock.connect();
});