-
Notifications
You must be signed in to change notification settings - Fork 45
/
test.js
127 lines (90 loc) · 3.26 KB
/
test.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
var noble = require('./index');
// Flag to continuously scan advertisements
const continuousScan = false;
console.log('noble');
noble.on('stateChange', function (state) {
console.log('on -> stateChange: ' + state);
if (state === 'poweredOn') {
noble.startScanning();
} else {
noble.stopScanning();
}
});
noble.on('scanStart', function () {
console.log('on -> scanStart');
});
noble.on('scanStop', function () {
console.log('on -> scanStop');
});
noble.on('discover', function (peripheral) {
console.log('on -> discover: ' + peripheral);
if (!continuousScan) {
noble.stopScanning();
}
peripheral.on('connect', function () {
console.log('on -> connect');
this.updateRssi();
});
peripheral.on('disconnect', function () {
console.log('on -> disconnect');
});
peripheral.on('rssiUpdate', function (rssi) {
console.log('on -> RSSI update ' + rssi);
this.discoverServices();
});
peripheral.on('servicesDiscover', function (services) {
console.log('on -> peripheral services discovered ' + services);
var serviceIndex = 0;
services[serviceIndex].on('includedServicesDiscover', function (includedServiceUuids) {
console.log('on -> service included services discovered ' + includedServiceUuids);
this.discoverCharacteristics();
});
services[serviceIndex].on('characteristicsDiscover', function (characteristics) {
console.log('on -> service characteristics discovered ' + characteristics);
var characteristicIndex = 0;
characteristics[characteristicIndex].on('read', function (data, isNotification) {
console.log('on -> characteristic read ' + data + ' ' + isNotification);
console.log(data);
peripheral.disconnect();
});
characteristics[characteristicIndex].on('write', function () {
console.log('on -> characteristic write ');
peripheral.disconnect();
});
characteristics[characteristicIndex].on('broadcast', function (state) {
console.log('on -> characteristic broadcast ' + state);
peripheral.disconnect();
});
characteristics[characteristicIndex].on('notify', function (state) {
console.log('on -> characteristic notify ' + state);
peripheral.disconnect();
});
characteristics[characteristicIndex].on('descriptorsDiscover', function (descriptors) {
console.log('on -> descriptors discover ' + descriptors);
var descriptorIndex = 0;
descriptors[descriptorIndex].on('valueRead', function (data) {
console.log('on -> descriptor value read ' + data);
console.log(data);
peripheral.disconnect();
});
descriptors[descriptorIndex].on('valueWrite', function () {
console.log('on -> descriptor value write ');
peripheral.disconnect();
});
descriptors[descriptorIndex].readValue();
//descriptors[descriptorIndex].writeValue(new Buffer([0]));
});
characteristics[characteristicIndex].read();
//characteristics[characteristicIndex].write(new Buffer('hello'));
//characteristics[characteristicIndex].broadcast(true);
//characteristics[characteristicIndex].notify(true);
// characteristics[characteristicIndex].discoverDescriptors();
});
services[serviceIndex].discoverIncludedServices();
});
if (peripheral.connectable) {
peripheral.connect();
} else {
console.log(peripheral.id + ' is not connectable.');
}
});