-
Notifications
You must be signed in to change notification settings - Fork 15
/
nuimo.js
143 lines (99 loc) · 2.99 KB
/
nuimo.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
let fs = require("fs"),
noble = require("noble"),
debug = require('debug')('nuimojs'),
EventEmitter = require("events").EventEmitter;
let Device = require("./src/device.js");
let ready = false,
wantScan = false;
noble.on("stateChange", (state) => {
ready = (state === "poweredOn");
if (ready) {
if (wantScan) {
noble.startScanning();
}
} else {
noble.stopScanning();
}
});
class Nuimo extends EventEmitter {
constructor (whitelist) {
super();
this._connectedDevices = {};
this._useWhitelist = false;
if (whitelist) {
if (Array.isArray(whitelist)) {
this._whitelist = whitelist;
this._useWhitelist = true;
} else if (typeof whitelist === "string") {
this._whitelist = [whitelist];
this._useWhitelist = true;
}
}
}
static get Direction () {
return Device.Direction;
}
static get Swipe () {
return Device.Swipe;
}
static get Fly () {
return Device.Fly;
}
static get Area () {
return Device.Area;
}
static get Options () {
return Device.Options;
}
static get wirething () {
return JSON.parse(fs.readFileSync(`${__dirname}/Wirefile`));
}
scan () {
wantScan = true;
noble.on("discover", (peripheral) => {
let advertisement = peripheral.advertisement;
if (advertisement.localName === "Nuimo") {
if (this._useWhitelist && this._whitelist.indexOf(peripheral.uuid) < 0) {
debug("Discovered device not in UUID whitelist");
return;
}
peripheral.removeAllListeners();
noble.stopScanning();
noble.startScanning();
let device = new Device(peripheral);
device._peripheral.on("connect", () => {
debug("Peripheral connected");
this._connectedDevices[device.uuid] = device;
});
device._peripheral.on("disconnect", () => {
debug("Peripheral disconnected");
delete this._connectedDevices[device.uuid];
if (wantScan) {
noble.startScanning();
}
device.emit("disconnect");
});
this.emit("discover", device);
}
});
if (ready) {
noble.startScanning();
}
}
wirethingInit () {
this.scan();
}
stop () {
wantScan = false;
noble.stopScanning();
}
getConnectedDeviceByUUID (uuid) {
return this._connectedDevices[uuid];
}
getConnectedDevices () {
return Object.keys(this._connectedDevices).map((uuid) => {
return this._connectedDevices[uuid];
})
}
}
module.exports = Nuimo;